-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
36 lines (36 loc) · 1.15 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
<!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>Tesla Clone</title>
<link rel="stylesheet" type="text/css" href="Style.css">
</head>
<body>
<nav>
<img src="images/logo.png" width="100px" height="50px">
<ul>
<a href="#"><li>Model S</li></a>
<a href="#"><li>Model 3</li></a>
<a href="#"><li>Model X</li></a>
<a href="#"><li>Model Y</li></a>
<a href="#"><li>Solar Roof</li></a>
<a href="#"><li>Solar Panels</li></a>
</ul>
<div id="rightmenu">
<ul>
<a href="#"><li>Account</li></a>
<a href="#"><li>Shop</li></a>
</ul>
</div>
</nav>
<article id="car1">
<h1>Model S</h1>
<div class="button-group">
<a href="#"><div class="firstbutton">CUSTOMER ORDER</div></a>
<a href="#"><div class="transbutton">EXISTING INVENTORY</div></a>
</div>
</article>
</body>
</html>