generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
160 lines (154 loc) · 5.04 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!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
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mobileNav.css" />
<title>Document</title>
</head>
<body>
<header>
<!-- mobile menu: only visible on mobile -->
<div class="open">
<span class="cls"></span>
<div id="mobile-nav">
<ul class="sub-menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="#">Program</a>
</li>
<li>
<a href="#">Join</a>
</li>
<li>
<a href="#">Sponsor</a>
</li>
</ul>
</div>
<span class="cls"></span>
</div>
<!-- Desktop menu: only visible on desktop -->
<nav>
<div class="social">
<ul>
<li>
<a><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a><i class="fab fa-twitter"></i></a>
</li>
<li><a>English</a></li>
<li><a>My page</a></li>
<li><a>Logout</a></li>
</ul>
</div>
<div class="navigation">
<a href="index.html"><img src="images/headphone.png" class="navImage" alt="" /></a>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="#">Program</a></li>
<li><a href="#">Join</a></li>
<li><a href="#">Sponsor</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Program</a></li>
<li><button type="button">CT Campaign</button></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="banner">
<h1 class="margin-left">the countdown summit program</h1>
<div class="banner-summary move white-bg">
<p>
The Countdown Summit will bring together 1,000 leaders in Edinburgh,
Scotland, in October, as TED speakers share a blueprint for a
beautiful net-zero future. Four days of inspiring talks and
commitments to climate solutions for industry leaders in Edinburgh,
Scotland.
</p>
</div>
<p class="location side">
Please contact per Email for any further questions about CT summit
program 2021 <br />
<span>[email protected]</span>
</p>
</section>
<section class="about">
<h3>The countdown summit program 2021 logo</h3>
<hr class="line" />
<p>
The logo of CT summit program was decided through the logo competition
from 8.June to 7.July.
</p>
<div class="about-logo">
<img src="images/headphone.png" alt="" />
</div>
</section>
<section class="past-events">
<h3>See the past Countdown Summits</h3>
<hr class="line" />
<p class="event-summary">
Take a look at last two Countdown Summits which took place virtually
</p>
<div class="event-list">
<div id="event-0">
<div class="bg-color">
<span>2020</span> <br />
Countdown Summit
</div>
</div>
<div id="event-1">
<div class="bg-color">
<span>2020</span> <br />
Countdown Summit
</div>
</div>
</div>
</section>
<section class="partner off">
<h3>Partner</h3>
<hr class="line" />
<ul class="partner-list">
<li class="image"><img src="images/mozilla.png" alt="" /></li>
<li><img src="images/google.png" alt="" /></li>
<li><img src="images/air.png" alt="" /></li>
<li class="image">
<img src="images/ted.png" class="stretch" alt="" />
</li>
<li class="image">
<img src="images/tesla.png" class="stretch" alt="" />
</li>
</ul>
</section>
<footer>
<div class="footer">
<img src="images/headphone.png" alt="" />
<p>2021 CT Summit, all rights reserved</p>
</div>
</footer>
</main>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<script src="main.js"></script>
</body>
</html>