-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
279 lines (273 loc) · 15.1 KB
/
Copy pathfaq.html
File metadata and controls
279 lines (273 loc) · 15.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap 5</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg border-bottom small border-bottom border-secondary-subtle border-3 fixed-top" style="background-color: black;" data-bs-theme="dark">
<div class="container">
<a class="navbar-brand" href="#">
<img src="./images/logo.png" alt="logo LOL">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="./course.html">Course</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./faq.html">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="./blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="./contact.html">Contact</a>
</li>
</ul>
<!-- Dùng thẻ a để đăng nhập -->
<div class="me-1 d-flex flex-column gap-2 flex-md-row">
<a href="#" class="btn btn-danger btn-sm d-inline-flex justify-content-center align-items-center">
<i class="fa fa-user-plus me-2" aria-hidden="true"></i>
Sign-up
</a>
<a href="#" class="btn btn-warning btn-sm d-inline-flex justify-content-center align-items-center">
<i class="fa fa-sign-in me-2" aria-hidden="true"></i>
Login
</a>
</div>
<!-- form search -->
<form class="d-flex mt-2 mt-lg-0" role="search">
<div class="input-group">
<input class="form-control me-0 form-control-sm" type="search" placeholder="Search for.." aria-label="Search"/>
<button class="btn btn-success btn-sm" type="submit">
<i class="fa fa-search" aria-hidden="true" width="16px" height="16px"></i>
</button>
</div>
</form>
</div>
</div>
</nav>
<!-- FAQ header-->
<header class="py-5 border-bottom border-secondary-subtle text-bg-dark">
<div class="container">
<div class="row align-items-center" style="margin-top: 150px;">
<div class="col-md-6">
<div class="breadcrumb-holder">
<nav style="--bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='%236c757d'/%3E%3C/svg%3E");" aria-label="breadcrumb">
<ol class="breadcrumb border d-inline-flex px-3 py-1 rounded-pill align-items-center">
<li class="breadcrumb-item"><a href="./index.html" class="text-decoration-none small">Home</a></li>
<li class="breadcrumb-item active small text-primary" aria-current="page">FAQ</li>
</ol>
</nav>
</div>
<div class="header-content">
<h1 class="fw-normal fs-3">League of Legends (LoL) is a 5v5 MOBA</h1>
<p class="fs-6 small fw-light text-secondary">League of Legends (LoL) is a 5v5 MOBA (Multiplayer Online Battle Arena) game where the primary objective is to destroy the enemy’s Nexus on the Summoner’s Rift map</p>
<div class="search w-75">
<form class="d-flex mt-2 mt-lg-0" role="search">
<div class="input-group">
<input class="form-control me-0 form-control-sm" type="search" placeholder="Search for.." aria-label="Search"/>
<button class="btn btn-success btn-sm" type="submit">
<i class="fa fa-search" aria-hidden="true" width="16px" height="16px"></i>
</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-md-6 mt-2 mt-md-0">
<img class="rounded w-100" src="./images/faq.png" alt="">
</div>
</div>
</div>
</header>
<!-- FAQ list -->
<section class="faq-list py-5 text-bg-dark border-bottom border-3">
<div class="container">
<div class="row">
<div class="col-md-8">
<details class="card text-bg-light mb-3 small">
<summary class="card-header">What is the difference between Macro?</summary>
<div>
<p class="card-body">Macro: Refers to high-level strategy (map movement, securing major objectives, making decisions on when to engage or disengage).</p>
</div>
</details>
<details class="card text-bg-light mb-3 small">
<summary class="card-header">What are the major Objectives and how should they be prioritized?</summary>
<div>
<p class="card-body">Priority often shifts to Baron/Elder Dragon in the late game, and pushing Turrets/Inhibitors in the mid-game.</p>
</div>
</details>
<details class="card text-bg-light mb-3 small">
<summary class="card-header">What is the "Snowball" potential?</summary>
<div>
<p class="card-body">It's the ability to convert a small early advantage (like an early kill) into a large, unstoppable lead throughout the rest of the game.</p>
</div>
</details>
<details class="card text-bg-light mb-3 small">
<summary class="card-header">How are MMR?</summary>
<div>
<p class="card-body">MMR (Matchmaking Rating): The hidden rating that determines your true skill level and the skill of the opponents you are matched against.</p>
</div>
</details>
<details class="card text-bg-light mb-3 small">
<summary class="card-header">Is Win Rate more important than Rank?</summary>
<div>
<p class="card-body">A high Win Rate generally indicates your MMR is higher than your current Rank, allowing you to gain more LP per win and climb faster.</p>
</div>
</details>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-header text-bg-primary">
Post your Questions
</div>
<div class="card-body">
<form action="">
<div class="row">
<div class="col-md-6">
<div class="mb-2">
<input type="text" class="form-control form-control-sm" placeholder="Name">
</div>
</div>
<div class="col-md-6">
<div class="mb-2">
<input type="email" class="form-control form-control-sm" placeholder="Email">
</div>
</div>
<div class="col-md-12">
<div class="mb-2">
<input type="text" class="form-control form-control-sm" placeholder="Your Questions Title">
</div>
</div>
<div class="col-md-12">
<div class="mb-2">
<textarea rows="5" class="form-control form-control-sm" placeholder="Questions in detail"></textarea>
</div>
</div>
<div class="col-md-12">
<div class="mb-2">
<button class="btn btn-success btn-sm d-inline-flex align-items-center w-100 justify-content-center" type="submit">
<i class="fa-solid fa-circle-question me-2"></i>
Post Questions
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Subscribe -->
<section class="subscribe py-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4">
<div class="text-center mb-3 mb-md-0">
<h5 class="text-success text-md-end fs-4 fw-light">Subscribe for newsletters</h5>
</div>
</div>
<div class="col-md-4">
<form class="d-flex" role="search">
<div class="input-group">
<input class="form-control me-0 form-control-sm" type="search" placeholder="Search for.." aria-label="Search"/>
<button class="btn btn-success btn-sm d-inline-flex align-items-center" type="submit">
<i class="fa fa-envelope me-2 mt-1" aria-hidden="true" width="16px" height="16px"></i>
Subscribe
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- main footer -->
<footer class="text-bg-dark py-5">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="brand-icon mb-2">
<img src="./images/logo.png" alt="">
</div>
<address class="small text-secondary">
Riot Games, Inc, <br>
W Olympic Blvd, Los Angeles
12333
</address>
<p class="small text-secondary">support@riotgames.com</p>
</div>
<div class="col-md-2">
<h6>Main menu</h6>
<ul class="list-unstyled small">
<li><a class="text-decoration-none text-secondary" href="https://www.leagueoflegends.com/vi-vn/champions/">Champions</a></li>
<li><a class="text-decoration-none text-secondary" href="https://www.leagueoflegends.com/vi-vn/news/">News</a></li>
<li><a class="text-decoration-none text-secondary" href="https://lolesports.com/vi-VN/">Esports</a></li>
<li><a class="text-decoration-none text-secondary" href="https://www.leagueoflegends.com/vi-vn/how-to-play/">Play game</a></li>
</ul>
</div>
<div class="col-md-2">
<h6>Misc</h6>
<ul class="list-unstyled small">
<li><a class="text-decoration-none text-secondary" href="https://www.leagueoflegends.com/vi-vn/news/riot-games/">Riot games</a></li>
<li><a class="text-decoration-none text-secondary" href="https://www.leagueoflegends.com/vi-vn/news/media/">Media</a></li>
<li><a class="text-decoration-none text-secondary" href="https://support.riotgames.com/hc/vi">Support</a></li>
<li><a class="text-decoration-none text-secondary" href="https://universe.leagueoflegends.com/vn_VN/">Universe</a></li>
</ul>
</div>
<div class="col-md-5">
<h6>Follow us</h6>
<div>
<a href="https://www.facebook.com/Leagueoflegendsvn/" class="btn btn-primary btn-sm rounded-pill d-inline-flex align-items-center mb-2">
<i class="fa-brands fa-facebook me-md-2"></i>
<span class="d-md-block d-none">Facebook</span>
</a>
<a href="https://x.com/LeagueOfLegends" class="btn btn-info btn-sm rounded-pill d-inline-flex align-items-center mb-2">
<i class="fa-brands fa-twitter me-md-2" aria-hidden="true"></i>
<span class="d-md-block d-none">Twitter</span>
</a>
<a href="https://www.youtube.com/@lmhtvietnam" class="btn btn-danger btn-sm rounded-pill d-inline-flex align-items-center mb-2">
<i class="fa-brands fa-youtube me-md-2"></i>
<span class="d-md-block d-none">YouTube</span>
</a>
</div>
</div>
</div>
</div>
</footer>
<!-- copyright -->
<div class="bg-black">
<div class="container">
<div class="row text-center text-white py-4">
<p class="m-0 small">Copyright © 2025. Trung Nhật</p>
</div>
</div>
</div>
<div class="pt-5 pb-3 d-md-none" style="background-color: black;"></div>
<!-- sticky footer -->
<div class="d-block d-md-none d-flex justify-content-center p-3 fixed-bottom filter">
<a href="" class="btn btn-warning rounded-pill btn-sm fw-bold px-3 d-inline-flex align-items-center">
<i class="fa fa-user-plus me-2" aria-hidden="true"></i>
Sign-up
</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js" integrity="sha384-FKyoEForCGlyvwx9Hj09JcYn3nv7wiPVlz7YYwJrWVcXK/BmnVDxM+D2scQbITxI" crossorigin="anonymous"></script>
</body>
</html>