-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (47 loc) · 1.85 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/main.css">
<link rel="icon" href="./images/gc-logo.png" type="image/x-icon">
<link href="//fonts.cdnfonts.com/css/cocogoose" rel="stylesheet">
<link href="//fonts.cdnfonts.com/css/lato" rel="stylesheet">
<title>Gaming Convention 2022</title>
</head>
<body>
<header>
</header>
<section class="headline">
<h1 class="page-header"><span>"Hello Gamers!"</span> <br>GAMING CONVENTION 2022 <br> IS HERE!</h1>
<p class="announcement">The annual gaming convention returns once again in 2022. As usual, you can expect plenty of
upcoming big-name and
independent video games to take a look at, panels, tournaments, and all-around good community vibes.</p>
<div id="time-place">
<h2 id="time">12.05.2022(THU) ~ 14(SAT)</h2>
<p id="place">@ Boston Convention and Exhibition Center
Boston, MA </p>
</div>
</section>
<section id="program">
<h2 class="section-header">Main Program</h2>
<hr class="orange-hr">
<div id="activities-div">
</div>
<a id="more-program" href="">SEE THE WHOLE PROGRAM</a>
<button id="join-gc">Join GC 2022</button>
</section>
<section id="featured-speakers">
<h2 class="section-header">Featured Speakers</h2>
<hr class="orange-hr">
<div id="speakers-div">
</div>
<button id="show-more">MORE <i class="fa-solid fa-angle-down arrow-icon"></i></button>
</section>
<script src="https://kit.fontawesome.com/1dea6ac3ad.js" crossorigin="anonymous"></script>
<script src="./scripts/page-header.js"></script>
<script src="./scripts/dynamic-content.js"></script>
<script src="./scripts/sponsors-footer.js"></script>
</body>
</html>