-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (138 loc) · 4.49 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
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
<!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="./assets/index.css">
<title>Tesla</title>
</head>
<body>
<div class="nav">
<img src="./assets/logo.png" style="height: 1em; margin-left: 1.6em; cursor: pointer;">
<div class="midnav">
<a>Model S</a>
<a>Model 3</a>
<a>Model X</a>
<a>Model Y</a>
<a>Solar Roof</a>
<a>Solar Panels</a>
</div>
<div class="sidnav">
<a>Shop</a>
<a>Account</a>
<a>Menu</a>
</div>
<div id="hamb" class="menu-btn">
<div href="javascript:void(0)" class="closebtn" onclick="closeNav()">X</div>
<a>Model S</a>
<a>Model 3</a>
<a>Model X</a>
<a>Model Y</a>
<a>Solar Roof</a>
<a>Solar Panels</a>
<a>Existing Inventory</a>
<a>Used Inventory</a>
<a>Trade-In</a>
<a>Test Drive</a>
<a>Powerwall</a>
<a>Find Us</a>
<a>Support</a>
<a>Investor Relations</a>
</div>
<div class="openbtn" style="font-size:30px;cursor:pointer; color:white;" onclick="openNav()">MENU</div>
<script>
function openNav() {
document.getElementById("hamb").style.display = "block";
}
function closeNav() {
document.getElementById("hamb").style.display = "none"
}
</script>
</div>
<div class="container">
<section>
<div class="inv"></div>
<div class="name">
<h1>Model 3</h1>
<h3>Order Online for <span>Touchless Delivery</span></h3>
</div>
<div class="btn">
<button class="btn1">CUSTOM ORDER</button>
<button class="btn2">EXISTING INVENTORY</button>
</div>
</section>
<section>
<div class="inv"></div>
<div class="name">
<h1>Model Y</h1>
<h3>Order Online for <span>Touchless Delivery</span></h3>
</div>
<div class="btn">
<button class="btn1">CUSTOM ORDER</button>
<button class="btn2">EXISTING INVENTORY</button>
</section>
<section>
<div class="inv"></div>
<div class="name">
<h1>Model S</h1>
<h3>Order Online for <span>Touchless Delivery</span></h3>
</div>
<div class="btn">
<button class="btn1">CUSTOM ORDER</button>
<button class="btn2">EXISTING INVENTORY</button>
</section>
<section>
<div class="inv"></div>
<div class="name">
<h1>Model X</h1>
<h3>Order Online for <span>Touchless Delivery</span></h3>
</div>
<div class="btn">
<button class="btn1">CUSTOM ORDER</button>
<button class="btn2">EXISTING INVENTORY</button>
</section>
<section>
<div class="inv"></div>
<div class="name">
<h1>Solar Panels</h1>
<h3>Lowest Cost Solar Panels in America</h3>
</div>
<div class="btn">
<button class="btn1">ORDER NOW</button>
<button class="btn2">LEARN MORE</button>
</section>
<section>
<div class="inv"></div>
<div class="name">
<h1>Solar Roof</h1>
<h3>Produce Clean Energy From Your Roof</h3>
</div>
<div class="btn">
<button class="btn1">ORDER NOW</button>
<button class="btn2">LEARN MORE</button>
</section>
<section>
<div class="inv"></div>
<div class="name">
<h1>Accessories</h1>
</div>
<div class="btn">
<button class="btn3">SHOP NOW</button>
</div>
<div class="footer">
<a>Tesla © 2022</a>
<a>Privacy & Legacy</a>
<a>Contact</a>
<a>Careers</a>
<a>News</a>
<a>Engage</a>
<a>Locations</a>
</div>
<div class="inv">
<p>You have reached the end of the page. Hope you have a good day!</p>
</div>
</section>
</div>
</body>
</html>