generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
117 lines (111 loc) · 3.84 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
<!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 href="//fonts.cdnfonts.com/css/cocogoose" rel="stylesheet" />
<link href="//fonts.cdnfonts.com/css/lato" rel="stylesheet" />
<script
src="https://kit.fontawesome.com/f5f70a395d.js"
crossorigin="anonymous"
></script>
<script src="./scripts/header.js" defer></script>
<script src="./scripts/footer.js" defer></script>
<title>Capstone Project</title>
</head>
<body>
<!-- Top Bar and Main Menu -->
<div class="top-bar" id="top-bar"></div>
<header class="header" id="header"></header>
<navbar class="mobile-menu"></navbar>
<!-- Section Headline -->
<section class="headline" id="headline">
<div class="hamburger" id="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="container">
<!-- <span class="hello-coding">"Hello! Coding World"</span> -->
<h1 class="about-pg-h1">
Coding Expo <br />
Global Summit <br />
2022
</h1>
<p class="about-desc">
Free software supporters, Wikipedia activists, open knowledge
foundation activists, art galleries, libraries, museums, archives,
governments, foundations, lawyers, social activists, etc. various
people active in the field of open content and open knowledge gather
in one place to share richer and more dynamic We hope that it will be
an opportunity to share our thoughts on creating an ecosystem.
</p>
<p class="contact-box">
<span id="contact-text">
Please contact as by e-mail if you have any <br />
other questions about the expo
</span>
<br />
<span id="contact-email">[email protected]</span>
</p>
</div>
</section>
<!-- Section About Logo -->
<section class="about-logo">
<div class="container">
<h2 class="about-logo-heading">
Coding Exop <br />
Global Summit 2022 Logo
</h2>
<hr class="orange-line" />
<p>This logo Coding Expo was created by Ghazanfar Ali on June 22</p>
<div class="coding-expo-global-summit-logo">
<img
src="./assets/images/Codin_Expo_Global_Summit_Logo_02.png"
alt="Coding Expo Global SummitLogo"
/>
</div>
</div>
</section>
<hr class="gray-line-lg" />
<!-- Section Past Summit -->
<section class="past-summit">
<div class="container">
<h2>See the past CE Global Summits</h2>
<hr class="orange-line" />
<p>
Take a look at the last two CE Global Summits which took place in
Buenos Aires and Warsaw.
</p>
<div class="past-summit-img-boxes">
<div class="past-summit-img-box">
<img
src="./assets/images/summit_01.jpg"
alt="Global Summit 2011 Image"
/>
<p>
<span> 2019 </span> <br /><br />
CE Global Summit 2019 in Buenos Aires
</p>
</div>
<div class="past-summit-img-box">
<img
src="./assets/images/summit_02.jpg"
alt="Global Summit 2013 Image"
/>
<p>
<span> 2021 </span> <br /><br />
CE Global Summit 2021 in Warsaw
</p>
</div>
</div>
</div>
</section>
<!-- Partner Section -->
<section class="partner" id="partner"></section>
<!-- Footer Section -->
<footer class="footer" id="footer"></footer>
</body>
</html>