-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.24 KB
/
index.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
<!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" />
<title>Landing Page</title>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<div class="nav-center">
<h1 class="nav-h1">GC</h1>
<ul class="nav-links">
<li><a href="events.html">Events Timeline</a></li>
<li><a href="team.html">our team</a></li>
<li><a href="contact.html">contact us</a></li>
</ul>
</div>
</nav>
<!-- Landing Video -->
<section class="connect">
<video
autoplay
muted
loop
class="video-container"
poster="../images/project-1.jpeg"
>
<source src="./stars.mp4" type="video/mp4" />
Sorry, your browser does not support embedded videos
</video>
<div class="video-banner">
<!-- Section Title -->
<div class="section-title">
<div class="underline"></div>
</div>
<!-- End Of Section Title -->
</div>
</section>
<!-- End Of Landing Video -->
</body>
</html>