-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.44 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JDM</title>
<link rel="icon" class="favicon" href="images/logos/logo1.png">
<link rel="stylesheet" href="css/sttyles/style.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
</style>
</head>
<body>
<section>
<div class="bgvideo">
<video src="images/index/bg-video.mp4" autoplay muted loop plays-inline type="video/mp4"></video>
</div>
</section>
<!-- Header with Navigation -->
<header>
<nav class="navlinks">
<ul>
<li><a href="index.html"><img src="images/logos/logo.png" alt="logo"></a></li>
<li><a href="home.html">HOME</a></li>
<li><a href="hub.html">HUB</a></li>
<li><a href="events.html">EVENTS</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main>
<div class="content">
<h1>Tighten Your Belts, Sharp Turns Ahead</h1>
<div class="buttons">
<a href="home.html">HOME</a>
<a href="hub.html">HUB</a>
</div>
</div>
</main>
</body>
</html>