-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
253 lines (236 loc) · 8.82 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>About Online Chess Conference</title>
<link rel="icon" href="assets/images/chesslogo.jpg">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/d86848cfe0.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<!--navbars-->
<div class="d-none d-md-block">
<nav class="navbar navbar-expand-sm bg-dark-custom text-white pt-0 pb-0">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
English
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
My Page
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
Logout
</a>
</li>
</ul>
</nav>
<nav class="navbar navbar-expand-sm bg-white text-dark pt-0 pb-0">
<a class="navbar-brand p-0 m-0" href="./index.html">
<figure class="logo m-0">
<img class="img-fluid" src="./assets/images/chesslogo.jpg" alt="Logo">
</figure>
</a>
<ul class="navbar-nav ml-auto">
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="./index.html">
Home
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link red" href="./about.html">
About
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="./tickets.html">
Tickets
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="#">
Join
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="#">
Sponsor
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="#">
News
</a>
</li>
<li class="nav-item pr-4 pl-4 red campaign">
<a class="nav-link" href="#">
Dashboard
</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<!--jumbotron section-->
<section class="container-fluid jumbotron slider-about mb-0">
<div class="row">
<!--bars for small screens-->
<div class="pt-0 nav-small d-block d-md-none navbar-toggler" data-toggle="collapse" data-target="#navbarSupportedContent1">
<i class="fa fa-bars"></i>
</div>
<!--toggle between fa-bar and fa-times-->
<script>
$(".fa").click(function () {
$(".fa").toggleClass("fa-bars fa-times");
});
</script>
<!-- Collapsible content -->
<div class="collapse navbar-collapse" id="navbarSupportedContent1">
<!-- Links -->
<ul class="navbar-nav mr-auto">
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="./index.html">
Home
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link red" href="./about.html">
About
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="./tickets.html">
Tickets
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="#">
Join
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="#">
Sponsor
</a>
</li>
<li class="nav-item pr-4 pl-4">
<a class="nav-link" href="#">
News
</a>
</li>
<li class="nav-item pr-4 pl-4 red campaign">
<a class="nav-link" href="#">
Dashboard
</a>
</li>
</ul>
<!-- Links -->
</div>
<!-- Collapsible content -->
<div class="welcome-text col-12 pt-5 mt-5">
<h3 class="text-left text-md-center red">"Hello Chess Fans!"</h3>
<h1 class="text-uppercase text-left text-md-center font-weight-bold red">Online Chess Conference</h1>
</div>
<div class="col-12 mt-4 mb-4">
<p class="welcome-description bg-white p-4">
The Global Online Chess Conference will give chess
fans and chess players an opportunity to interact and participate in
Tournaments and win fantastic prizes.
</p>
</div>
<div class="event-date col-12">
<p class="text-center w-50 m-auto">
Contact us on our email for more information
<span class="font-weight-bold">
<u>[email protected]</u>
</span>
</p>
</div>
</div>
</section>
<!-- logo section-->
<section class="container-fluid featured-speakers text-dark bg-white border-bottom">
<div class="row pt-1 mb-3">
<div class="col-12">
<h3 class="text-center section-title">Online Chess Conference Logo</h3>
<hr class="hr-title">
</div>
</div>
<div class="row logo-description p-4">
<div class="col-12">
<p class="text-center">The logo of this conference was decided
through the logo competition from 15 Nov to 19 November</p>
</div>
<div class="col-12 mt-4 text-center">
<figure class="border p-3">
<img class="img-fluid" width="200" src="./assets/images/chesslogo.jpg" alt="Logo">
</figure>
</div>
</div>
</section>
<!--past section-->
<section class="container-fluid featured-speakers text-dark bg-white border-bottom">
<div class="row pt-3 mb-5">
<div class="col-12">
<h3 class="text-center section-title">Our previous conferences</h3>
<hr class="hr-title">
</div>
</div>
<div class="row">
<div class="col-12">
<p class="text-center">Take a look at our previous conferences</p>
</div>
</div>
<div class="row previous p-4 justify-content-center">
<div class="col-12 col-md-5 mt-4 text-center text-white p-5">
<h3 class="font-weight-bold mb-3">2020</h3>
<p class="font-weight-bold text-white">Online chess conference 2020 in Buenos Aires</p>
</div>
<div class="col-12 col-md-5 ml-md-2 mt-4 text-center text-white p-5">
<h3 class="font-weight-bold mb-3">2019</h3>
<p class="font-weight-bold text-white">Online chess conference 2019 in Toronto</p>
</div>
</div>
</section>
</main>
<!--footer-->
<footer class="container-fluid p-4 bg-dark-custom">
<div class="row">
<div class="col-6">
<figure>
<img class="img-fluid" src="./assets/images/creative.jpg" alt="Creative Common">
</figure>
</div>
<div class="col-6">
<p class="text-white">2020 Creative Commons Korea <br>
Some Rights Reserved </p>
</div>
</div>
</footer>
</body>
</html>