-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (85 loc) · 3.41 KB
/
Copy pathindex.html
File metadata and controls
87 lines (85 loc) · 3.41 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
<!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="lib/styles/index.css" />
<link rel="stylesheet" href="lib/styles/mob-menu.css" />
<title>ACM ICPC Summit 2022</title>
</head>
<body>
<main>
<header class="headline">
<img class="menu" src="images/icons/menu.svg" alt="menu-icon" />
<nav class="nav-menu">
<ul class="menu-list">
<li class="mob-nav-item"><a href="index.html">Home </a></li>
<li class="mob-nav-item"><a href="about.html"> About </a></li>
</ul>
<p class="close">Close</p>
</nav>
<section class="desktop-bar"></section>
<section class="content-wrapper">
<p class="hint">"Think twice, code once"</p>
<a href="#" class="logo">
<h1>ACM ICPC Summit 2022</h1>
</a>
<p class="description">
For all people interested in competitive programming that you will
get the opportunity to meet new minds and new thinking approaches
from all over the arabic and african world.
</p>
<p class="date">2022.10.15(MON) ~ 16(TUE)</p>
<p class="location">@ Cairo university</p>
</section>
</header>
<section class="main-program">
<h3 class="section-title">Main Program</h3>
<hr class="section-line" />
<section class="program-content-wrapper">
<article class="program-content">
<img src="images/icons/lecture.png" alt="lecture-icon" />
<p class="content-title">Lecture</p>
<p class="content-description">
Listen to speakers from all over the arab and african world
</p>
</article>
<article class="program-content">
<img src="images/icons/workshop.png" alt="workshop-icon" />
<p class="content-title">workshop</p>
<p class="content-description">
Watch experts solving code challenges and explore ther thinking
techniques
</p>
</article>
<article class="program-content">
<img src="images/icons/exhibition.png" alt="exhibition-icon" />
<p class="content-title">Contest</p>
<p class="content-description">
Show us your mind art, challenge yourself and many other students
soving programming contest
</p>
</article>
</section>
<a class="join-us" href=""> Join ACM ICPC Summit 2022</a>
<a href="" class="see-program">SEE THE WHOLE PROGRAM</a>
</section>
<section class="speakers">
<h3 class="section-title">Featured Speakers</h3>
<hr class="section-line" />
<div class="speakers-wrapper"></div>
<div class="more-button">
<p>MORE</p>
<img src="images/arrow-down.svg" alt="down-arrow" />
</div>
</section>
<footer></footer>
</main>
<script src="./lib/scripts/nav-menu.js"></script>
<script type="module" src="./lib/scripts/speakers_data.js"></script>
<script type="module" src="./lib/scripts/speakers.js"></script>
<script src="./lib/scripts/footer.js"></script>
<script src="./lib/scripts/top-bar.js"></script>
</body>
</html>