-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (56 loc) · 2.71 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="littles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/locomotive-scroll.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet" />
</head>
<body>
<!-- Background -->
<div class="backgroundDiv">
<video class="Background" autoplay muted loop>
<source src="Resources/RollsRoyce.webm" type="video/webm">
Your browser does not support the video tag.
</video>
</div>
<!-- Navbar -->
<nav class="absolute">
<ul type="none">
<li class="navbarContent">Home</li>
<li class="navbarContent">Services</li>
<li class="navbarContent">Shop</li>
<div class="logo-parent">
<img class="logo" src="Resources/TeslaLogo.webp" alt="Logo Here">
</div>
<li class="navbarContent">About</li>
<li class="navbarContent">Collection</li>
<li class="navbarContent">Support</li>
</ul>
</nav>
<audio id="myAudio">
<source src="Resources/CarEngineStart.aac" type="audio/aac">
Your browser does not support the audio element.
</audio>
<div class="content">
<h1 class="heading">The Safest Automobile <br> Brand in World.</h1>
</div>
<button class="loginButton">
<span class="line line1">Drive Now</span>
<span class="line line2">Login</span>
</button>
<button class="start-engine" onclick="playAudio()"><span class="text">Start Engine</span>
<svg class="keyIcon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path
d="M10.7577 11.8281L18.6066 3.97919L20.0208 5.3934L18.6066 6.80761L21.0815 9.28249L19.6673 10.6967L17.1924 8.22183L15.7782 9.63604L17.8995 11.7574L16.4853 13.1716L14.364 11.0503L12.1719 13.2423C13.4581 15.1837 13.246 17.8251 11.5355 19.5355C9.58291 21.4882 6.41709 21.4882 4.46447 19.5355C2.51184 17.5829 2.51184 14.4171 4.46447 12.4645C6.17493 10.754 8.81633 10.5419 10.7577 11.8281ZM10.1213 18.1213C11.2929 16.9497 11.2929 15.0503 10.1213 13.8787C8.94975 12.7071 7.05025 12.7071 5.87868 13.8787C4.70711 15.0503 4.70711 16.9497 5.87868 18.1213C7.05025 19.2929 8.94975 19.2929 10.1213 18.1213Z">
</path>
</svg>
</button>
<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/locomotive-scroll.js">
</script>
<script src="script.js"></script>
</body>
</html>