-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
84 lines (83 loc) · 3.23 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
<!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/about.css" />
<link rel="stylesheet" href="lib/styles/mob-menu.css" />
<title>ACM ICPC Seminar 2022</title>
</head>
<body>
<main>
<header class="about-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>
<div class="close">Close</div>
</nav>
<section class="desktop-bar"></section>
<section class="about-wrapper">
<a href="" class="logo">
<h1>ACM ICPC Seminar 2022</h1>
</a>
<p class="about-description">
A seminar 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.
<span
>A seminar 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.
</span>
<span>
A seminar 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.
</span>
</p>
<p class="contact">
Please contact us per Email for any further questions about ACM ICPC
Seminar 2022
</p>
<p class="email">cairoicpc@acm.orgm</p>
</section>
</header>
<article class="logo-description">
<h3 class="section-title">ACM ICPC Summit 2022 Logo</h3>
<hr class="section-line" />
<p>the logo was inspired by the icpc itself</p>
<img class="logo-image" src="images/download.png" alt="acpc-logo" />
</article>
<hr />
<section class="past-summits">
<h3 class="section-title">See the past CC Global summits</h3>
<hr class="section-line" />
<p>Take a look at th last two summits</p>
<section class="past-summit-wrapper">
<article class="past-summit">
<img src="images/acpc.jpg" alt="acpc-image" />
<div class="overlay">
<p>2011</p>
<p>ACM ICPC Summit in Algeria</p>
</div>
</article>
<article class="past-summit">
<img src="images/acpc.jpg" alt="acpc-image" />
<div class="overlay">
<p>2013</p>
<p>ACM ICPC Summit in Egypt</p>
</div>
</article>
</section>
</section>
<footer></footer>
</main>
<script src="lib/scripts/nav-menu.js"></script>
<script src="lib/scripts/footer.js"></script>
<script src="lib/scripts/top-bar.js"></script>
</body>
</html>