-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (69 loc) · 3.31 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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" />
<title>Javascript Conference 2023</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/partners.css">
<link rel="stylesheet" href="css/footer.css">
</head>
<body>
<section id="main-nav" class="bg-body fixed-top pb-2">
</section>
<section id="home">
<div class="title mx-auto col-11 col-md-6">
</div>
<div class="home-description mx-auto col-11 col-md-6 border border-5 border-white my-md-5">
<p class="p-3 m-auto">
A joyful celebration believing in the value of openness and sharing, creating a positive change with developers from over 80 countries is taking place in January, in Perú.
</p>
</div>
<div class="schedule col-11 col-md-6 mx-auto mt-4">
<h5 class="mx-2 mb-0">
2023.01.25(WED) ~ 31(TUE)
</h5>
<p class="mx-2">
@ National Museum of Karea, Art Center Nabi and more
</p>
</div>
</section>
<section id="main-program" class="pt-2 pb-md-5">
<h5 class="text-center text-white mt-4 mb-2 mb-md-5">
Main Program
<hr class="mt-3 mx-auto title-hr">
</h5>
<div id="programs-container" class="col-11 col-md-7 d-flex flex-column flex-md-row mx-auto gap-1">
</div>
<div class="text-center mt-md-5">
<button type="button" class="btn my-3 py-3 px-5 text-white rounded-0">Join the Javascript Conference 2023</button>
</div>
</section>
<section id="speakers" class="col-md-7 m-auto">
<h5 class="text-center fw-bold mt-4 mb-2">
Featured Speakers
<hr class="mt-3 mx-auto title-hr">
</h5>
<div id="speakers-container" class="row d-flex flex-column flex-md-row gap-1 flex-wrap">
</div>
<div class="text-center my-3 px-3">
<button id="view-more" type="button" class="btn border border-1 shadow w-100 fw-bold">MORE <i class="active fa-solid fa-angle-down"></i></button>
</div>
</section>
<section id="partners" class="pt-2 pb-5">
</section>
<section id="footer" class="pt-4 pb-3">
</section>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<!-- Custom JS -->
<script src="index.js" type="module"></script>
</body>
</html>