-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
273 lines (267 loc) · 14 KB
/
Copy pathcontact.html
File metadata and controls
273 lines (267 loc) · 14 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
<!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 " 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 active" 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>
<!-- Contact header-->
<section class="py-5">
<div class="container">
<div class="row justify-content-center" style="margin-top: 150px;">
<div class="col-md-6">
<div class="py-3 mb-4 text-center">
<h1 class="fs-3 fw-light">Submit a Request</h1>
<p class="fs-6 fw-normal text-secondary">We're always ready to help with any issue you might encounter! Submit a support request! As long as your request doesn't get lost through the portal, we will assist you soon</p>
</div>
</div>
</div>
<div class="row"></div>
</div>
</section>
<!-- Contact content -->
<div class="container border-bottom border-secondary-subtle">
<div class="row" style="margin-top: -3rem; margin-bottom: 5rem;">
<div class="col-md-4 mb-3">
<div class="card text-center">
<div class="card-header">F.A.Q</div>
<div class="card-body p-5">
<p class="m-0 small">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Molestias porro dolorum quibusdam quisquam consequatur</p>
</div>
<div class="card-footer">
<a class="btn btn-success btn-sm d-inline-flex align-items-center" href="./faq.html">
<i class="fa fa-question-circle me-2" aria-hidden="true" width="16px" height="16px"></i>
See FAQ's
</a>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card text-center">
<div class="card-header">Official LoL Contact and Support Channels</div>
<div class="card-body p-5">
<p class="m-0 small">If you encounter issues with your account, technical problems, or billing concerns, this is the only way to submit an official support request</p>
</div>
<div class="card-footer">
<a class="btn btn-success btn-sm d-inline-flex align-items-center" data-bs-toggle="modal" data-bs-target="#exampleModal">
<i class="fa-solid fa-paper-plane me-2" aria-hidden="true" width="16px" height="16px"></i>
Get Help
</a>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card text-center">
<div class="card-header">Fan Projects</div>
<div class="card-body p-5">
<p class="m-0 small">Many LoL fans are artists, developers, or writers who work on independent (freelance) projects based on LoL's IP (Intellectual Property)</p>
</div>
<div class="card-footer">
<a class="btn btn-success btn-sm d-inline-flex align-items-center" href="#!">
<i class="fa-solid fa-circle-info me-2"></i>
Seen Request
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header text-white bg-dark">
<h1 class="modal-title fs-5" id="exampleModalLabel">Get Help</h1>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<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 fa-envelope me-2" aria-hidden="true" width="16px" height="16px"></i>
Subscribe
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- 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>