-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
115 lines (114 loc) · 5.33 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
<!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="styles/styles.css">
<title>Leaders' Week - 2023 - About</title>
</head>
<body>
<!-- MENU -->
<div class="nav-box d-flex">
<nav class="menu-top">
<a href="index.html"><img src="images/logo-gc-2.png" alt="Leaders Week Summit 2023 Logo" class="hidden-item logo"></a>
<ul>
<li><a href="#" class="menu-item icon"><img src="images/facebook-app-symbol.png" alt="facebook icon"></a></li>
<li><a href="#" class="menu-item icon"><img src="images/twitter.png" alt="twitter icon"></a></li>
<li><a href="#" class="menu-item">English</a></li>
<li><a href="#" class="menu-item">My Page</a></li>
<li><a href="#" class="menu-item">Logout</a></li>
</ul>
</nav>
<img src="images/menu.png" alt="menu icon" id="menu-icon">
<nav class="menu-box" id="menu-box">
<a href="index.html"><img src="images/logo-gc-1.png" alt="Leaders Week Summit 2023 Logo" class="hidden-item logo"></a>
<ul>
<li><a href="index.html" class="menu-item active">Home</a></li>
<li><a href="index.html#Program" class="menu-item">Program</a></li>
<li><a href="#" class="menu-item">Join</a></li>
<li><a href="#" class="menu-item">Sponsor</a></li>
<li><a href="#" class="menu-item">News</a></li>
<li><a href="index.html" class="menu-item hidden-item red-bordered">LW Company</a></li>
</ul>
</nav>
</div>
<!-- MAIN -->
<main>
<!-- HERO SECTION -->
<section class="about-page hero-section d-flex" id="Home">
<div class="section-container d-flex">
<div class="title-box d-flex">
<div class="separator"></div>
<h2 class="subtitle bold">Summit 2023</h2>
<h1 class="title bold">Leaders Week</h1>
</div>
<p class="description">
A joyful celebration in the value of openess and sharing,
creating a positive change with people from over 10 countries
is taking place in July, in Cotonou, Benin.
</p>
<div class="hero-event">
<p>Please contact us per Email for any further questions about Leaders Week Summit 2023!</p>
<p class="mail">leadersweek2023@example.org</p>
</div>
</div>
</section>
<!-- ABOUT LEADER WEEK SECTION -->
<section class="section about-leader-week">
<div class="title-box d-flex">
<h2 class="section-title">Leaders Week Suumits 2023 logo</h2>
<div class="separator"></div>
<p>
the logo of Leaders Week Summit 2023 was decided through the logo competition from 2. April to 9. May.
</p>
</div>
<img src="images/logo-gc-1.png" alt="Leaders Week Summit 2023 Logo">
</section>
<!-- LATEST EVENTS SECTION -->
<section class="section latest-events">
<div class="title-box d-flex">
<h2 class="section-title">See the past Leaders Week Suumits</h2>
<div class="separator"></div>
<p>Take a look at the last two Leaders Week SUmmit which took place in Warsaw and Niddle Land.
</p>
</div>
<div class="events-box-container d-flex">
<div class="events-box box-1 d-flex">
<span class="date bold">2021</span>
<p>Leaders Week Summit 2021 in Warsaw</p>
</div>
<div class="events-box box-2 d-flex">
<span class="date bold">2019</span>
<p>Leaders Week Summit 2019 in Niddle Land</p>
</div>
</div>
</section>
<!-- PARTNERS SECTION -->
<section class="about-page section partner-section" id="Partner">
<div class="title-box d-flex">
<h2 class="section-title">Partner</h2>
<div class="separator"></div>
</div>
<div class="section-container partner-box d-flex">
<p class="partner-1">Mozilla</p>
<p class="partner-2">G<span class="bold">oo</span>gle</p>
<p class="partner-3 bold">NAVER</p>
<p class="partner-4">Koala</p>
<p class="partner-5">Microsoft</p>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer-1 d-flex">
<a href="index.html"><img src="images/logo-gc-1.png" alt="Leaders Week Summit 2023 Logo" class="logo"></a>
<small>2023 Creative Common <br> Some Right Reserved</small>
</footer>
<footer class="footer-2">
<a href="index.html"><img src="images/logo-gc-2.png" alt="Leaders Week Summit 2023 Logo" class="logo"></a>
<small>2023 Creative Common <br> Some Right Reserved</small>
</footer>
<!-- LINK TO JAVASCRIPT FILE -->
<script src="scripts/scripts.js"></script>
</body>
</html>