-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
330 lines (314 loc) · 13 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Apple Clone</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg d-flex justify-content-center">
<div class="container d-flex">
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="navbar-brand" href="https://www.apple.com/">
<img src="./assets/apple-icon-small.webp" class="apple-icon-small" alt="Apple Icon">
</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Store</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Mac</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">iPad</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">iPhone</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Watch</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Vision</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Airpods</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">TV & Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Entertainment</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Accessories</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Support</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="https://www.apple.com/shop/bag">
<img src="./assets/apple-search-icon-small.webp" class="apple-icon-small" alt="Search Icon">
</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="https://www.apple.com/shop/bag">
<img src="./assets/shopping-cart-apple-small.webp" class="apple-icon-small" alt="Shopping Cart Icon">
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- <ul class="nav justify-content-center navbar">
<li class="nav-item">
<a class="nav-link text-light" href="https://www.apple.com/"><img src="./assets/apple-icon-small.webp" class="apple-icon-small"></a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Store</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Mac</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">iPad</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">iPhone</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Watch</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Vision</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Airpods</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">TV & Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Entertainment</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Accessories</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#">Support</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="https://www.apple.com/shop/bag"><img src="./assets/apple-search-icon-small.webp" class="apple-icon-small"></a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="https://www.apple.com/shop/bag"><img src="./assets/shopping-cart-apple-small.webp" class="apple-icon-small"></a>
</li>
</ul> -->
<!-- intro section -->
<section class="intro">
<span class="apple-home-logo">
<img src="./assets/homepage-apple-image.png" />
</span>
<h1 class="intro-title">There's still time<br />to work wonders</h1>
<h4 class="intro-description">
Finish off your list with great last-minute gifts
</h4>
<a href="https://www.apple.com/store"
>Shop <i class="bi bi-caret-right"></i
></a>
</section>
<!-- section 2 - iphone -->
<section class="iphone-section">
<h2 class="iphone-title">iPhone 15 Pro</h1>
<h3 class="iphone-intro">Titanium. So Strong. So light. So Pro.</h2>
<span class="iphone-links"><a href="#">Learn more ></a><a href="#">Buy ></a></span>
</section>
<!-- section 3 apple watch -->
<section class="apple-watch-section">
<video autoPlay loop muted id="apple-video">
<source src="./assets/Untitled video - Made with Clipchamp.mp4" type="video/mp4">
</video>
<!-- Overlay -->
<div class="overlay"></div>
<!-- content -->
<div class="content">
<h2 class="watch-intro"><span><img src="./assets/apple-icon-small.webp" class="apple-icon-watch"></span>WATCH<br>SERIES 9</h2>
<h3 class="watch-content">Double tap. A magical new way to use Apple Watch.</h3>
<span><button class="apple-watch-btns">Learn more</button><button class="apple-watch-btns">Buy</button></span>
</div>
</section>
<!-- products -->
<section class="apple-products">
<!-- product 1 -->
<div class="iphone">
<div class="apple-prod-content">
<h4 class="headline">iPhone 15</h4>
<h5 class="subhead" role="presentation">New camera. New design. Newphoria.</h5>
<div class="cta-links">
<a href="" target="_blank">Learn more ></a>
<a href="/us/shop/goto/buy_iphone/iphone_15" target="_blank">Buy ></a>
</div>
<img src="./assets/iphone-img-light.jpg" class="product-images">
</div>
</div>
<!-- product 2 -->
<div class="macbook">
<div class="apple-prod-content">
<h4 class="headline">Macbook Pro</h4>
<h5 class="subhead" role="presentation">Mind-blowing. Head-turning.</h5>
<div class="cta-links">
<a href="" target="_blank">Learn more ></a>
<a href="/us/shop/goto/buy_iphone/iphone_15" target="_blank">Buy ></a>
</div>
<img src="./assets/macbook-img.jpg" class="product-images">
</div>
</div>
<!-- product 3 -->
<div class="apple-watch">
<div class="apple-prod-content">
<h4 class="headline">WATCH</h4>
<span class="text-warning" id="subheading">ULTRA 2</span>
<h5 class="subhead" role="presentation">Next level adventure.</h5>
<div class="cta-links">
<a href="" target="_blank">Learn more ></a>
<a href="/us/shop/goto/buy_iphone/iphone_15" target="_blank">Buy ></a>
</div>
<img src="./assets/apple-watch-img.jpg" class="product-images">
</div>
</div>
<!-- product 4 -->
<div class="airpods">
<div class="apple-prod-content" id="airpods">
<h4 class="headline">Airpods Pro</h4>
<h5 class="subhead" role="presentation">Adaptive audio. Now playing.</h5>
<div class="cta-links">
<a href="" target="_blank">Learn more ></a>
<a href="/us/shop/goto/buy_iphone/iphone_15" target="_blank">Buy ></a>
</div>
<img src="./assets/airpods-img.jpg" class="product-images">
</div>
</div>
<!-- product 5 -->
<div class="apple-card">
<div class="apple-prod-content">
<h4 class="headline">Card</h4>
<h5 class="subhead" role="presentation">Get up to 3% Daily Cash back<br> with every purchase.</h5>
<div class="cta-links">
<a href="" target="_blank">Learn more ></a>
<a href="/us/shop/goto/buy_iphone/iphone_15" target="_blank">Buy ></a>
</div>
<img src="./assets/apple-card-img.jpg" class="product-images">
</div>
</div>
<!-- product 6 -->
<div class="trade-in">
<div class="apple-prod-content">
<h4 class="headline">Trade In</h4>
<h5 class="subhead" role="presentation">Get $200-$650 in credit when<br> you trade in iPhone 11 or higher.</h5>
<div class="cta-links">
<a href="" target="_blank">Learn more ></a>
<a href="/us/shop/goto/buy_iphone/iphone_15" target="_blank">Buy ></a>
</div>
<img src="./assets/iphone-trade-in.jpg" class="product-images">
</div>
</div>
</section>
<!-- carousel -->
<section class="gallery">
<div class="carousel-container">
<div class="carousel">
<img src="https://is1-ssl.mzstatic.com/image/thumb/tPJwMGtsAr_psAVlyf2Rzg/1250x703.jpg" alt="Image 1">
<img src="https://is1-ssl.mzstatic.com/image/thumb/a_voEGGOjHGvUUhwrbStXQ/1250x703.jpg" alt="Image 2">
<img src="https://is1-ssl.mzstatic.com/image/thumb/mZsXfk4apSIl3Q5QZqztiQ/1250x703.jpg" alt="Image 3">
<img src="https://is1-ssl.mzstatic.com/image/thumb/FVXovQ_qyfe9iwKjx4dRxA/1250x703.jpg" alt="Image 4">
<img src="https://is1-ssl.mzstatic.com/image/thumb/ageP1PYyLi7UlNiWMva32Q/1250x703.jpg" alt="Image 5">
<img src="https://is1-ssl.mzstatic.com/image/thumb/-RJ9s2YmRAo0GqNUf3GNlg/1250x703.jpg" alt="Image 6">
<img src="https://is1-ssl.mzstatic.com/image/thumb/q8QlFpnNct0G9kpRmyMyNw/1250x703.jpg" alt="Image 7">
<img src="https://is1-ssl.mzstatic.com/image/thumb/zI2CDCT1wdz22rTE-yIAww/1250x703.jpg" alt="Image 8">
<img src="https://is1-ssl.mzstatic.com/image/thumb/9ewxNiQdC032DQcorTcsvA/1250x703.jpg" alt="Image 9">
<img src="https://is1-ssl.mzstatic.com/image/thumb/R_l1v_QVLik6NRU2FL9yrw/1250x703.jpg" alt="Image 10">
<!-- Add more images as needed -->
</div>
<div class="carousel-controls"></div>
</div>
</section>
<!-- footer -->
<footer class="apple-footer">
NOTE: THIS IS A PAGE INSPIRED BY APPLE.COM'S LAYOUT. I DO NOT OWN ANY OF THE IMAGES IN THE SITE. THE CREDITS GO TO APPLE.<br><br>
<div class="footer-content">
<div class="footer-section">
<h4>Shop and Learn</h4>
<ul>
<li>Mac</li>
<li>iPad</li>
<li>iPhone</li>
<li>Watch</li>
<!-- Add more links as needed -->
</ul>
</div>
<div class="footer-section">
<h4>Services</h4>
<ul>
<li>Apple Music</li>
<li>Apple TV+</li>
<li>Apple Arcade</li>
<li>iCloud</li>
<!-- Add more links as needed -->
</ul>
</div>
<div class="footer-section">
<h4>Account</h4>
<ul>
<li>Manage Your Apple ID</li>
<li>Apple Store Account</li>
<li>iCloud.com</li>
<!-- Add more links as needed -->
</ul>
</div>
<div class="footer-section">
<h4>Apple Store</h4>
<ul>
<li>Find a Store</li>
<li>Genius Bar</li>
<li>Today at Apple</li>
<li>Apple Camp</li>
<!-- Add more links as needed -->
</ul>
</div>
<!-- Add more sections as needed -->
</div>
</footer>
<!-- bootstrap -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<script src="./app.js"></script>
</body>
</html>