-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (139 loc) · 5.09 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<script src="./script.js" defer></script>
<title>Tesla-Clone</title>
</head>
<body>
<header class="page-hdr">
<a href="#">
<svg class="logo" viewBox="0 0 342 35">
<path
d="M0 .1a9.7 9.7 0 0 0 7 7h11l.5.1v27.6h6.8V7.3L26 7h11a9.8 9.8 0 0 0 7-7H0zm238.6 0h-6.8v34.8H263a9.7 9.7 0 0 0 6-6.8h-30.3V0zm-52.3 6.8c3.6-1 6.6-3.8 7.4-6.9l-38.1.1v20.6h31.1v7.2h-24.4a13.6 13.6 0 0 0-8.7 7h39.9v-21h-31.2v-7h24zm116.2 28h6.7v-14h24.6v14h6.7v-21h-38zM85.3 7h26a9.6 9.6 0 0 0 7.1-7H78.3a9.6 9.6 0 0 0 7 7zm0 13.8h26a9.6 9.6 0 0 0 7.1-7H78.3a9.6 9.6 0 0 0 7 7zm0 14.1h26a9.6 9.6 0 0 0 7.1-7H78.3a9.6 9.6 0 0 0 7 7zM308.5 7h26a9.6 9.6 0 0 0 7-7h-40a9.6 9.6 0 0 0 7 7z"
></path>
</svg>
</a>
<nav class="nav-desktop-group" id="nav-group-a">
<a href="#model-s-content">Model S</a>
<a href="#model-3-content">Model 3</a>
<a href="#model-x-content">Model X</a>
<a href="#model-y-content">Model Y</a>
<a href="#solar-content">Powerwall</a>
<a href="#accessories-content">Charging</a>
</nav>
<nav class="nav-desktop-group nav-group-b">
<a href="#">Support</a>
<a href="#">Shop</a>
<a href="#">Account</a>
<a href="#">Menu</a>
</nav>
<button type="button" id="btn-nav-phone">Menu</button>
</header>
<!-- menu nav modal for small screens -->
<div id="modal" class="modal"></div>
<aside id="mobile-nav">
<button type="button" id="btn-nav-close" class="btn-close">X</button>
<ul class="nav-list">
<li><a href="#">Model S</a></li>
<li><a href="#">Model 3</a></li>
<li><a href="#">Model X</a></li>
<li><a href="#">Model Y</a></li>
<li><a href="#">Powerwall</a></li>
<li><a href="#">Charging</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Account</a></li>
</ul>
</aside>
<!-- model 3 content -->
<section id="model-3-content" class="content">
<header class="content-hdr">
<h3 class="content-title">Model 3</h3>
<p class="info-txt">
2% Company Car Tax.
<span class="info-txt-more">Learn More</span>
</p>
</header>
<footer>
<div class="btn-group">
<button type="button" class="btn btn-primary">
Explore Inventory
</button>
<button type="button" class="btn btn-secondary">Custom Order</button>
</div>
<p class="footer-txt">Schedule a Test Drive</p>
</footer>
</section>
<!-- model y content -->
<section id="model-y-content" class="content">
<header class="content-hdr">
<h3 class="content-title">Model Y</h3>
<p class="info-txt">
2%Company Car Tax.
<span class="info-txt-more">Learn More</span>
</p>
</header>
<footer>
<div class="btn-group">
<button type="button" class="btn btn-primary">
Explore Inventory
</button>
<button type="button" class="btn btn-secondary">Custom Order</button>
</div>
<p class="footer-txt">Schedule a Test Drive</p>
</footer>
</section>
<!-- model S content -->
<section id="model-s-content" class="content">
<header class="content-hdr">
<h3 class="content-title">Model S</h3>
</header>
<footer>
<div class="btn-group">
<button type="button" class="btn btn-primary">
Explore Inventory
</button>
<button type="button" class="btn btn-secondary">Test Drive</button>
</div>
<p class="footer-txt">Only available as left-hand drive</p>
</footer>
</section>
<!-- Solar and Powerwall content -->
<section id="solar-content" class="content">
<header class="content-hdr">
<h3 class="content-title">Solar and Powerwall</h3>
<p class="info-txt">Power Everything</p>
</header>
<footer>
<button type="button" class="btn btn-primary">Learn More</button>
</footer>
</section>
<!-- Model X content -->
<section id="model-x-content" class="content">
<header class="content-hdr">
<h3 class="content-title">Model X</h3>
</header>
<footer>
<div class="btn-group">
<button type="button" class="btn btn-primary">
Explore Inventory
</button>
<button type="button" class="btn btn-secondary">Test Drive</button>
</div>
<p class="footer-txt">Only available as left-hand drive</p>
</footer>
</section>
<!-- Accessories -->
<section id="accessories-content" class="content">
<header class="content-hdr">
<h3 class="content-title">Accessories</h3>
</header>
<footer>
<button type="button" class="btn btn-dark">Shop Now</button>
</footer>
</section>
</body>
</html>