-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (98 loc) · 3.84 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
<!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 rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="images/seb-fotor-bg-remover-2024020922815.png" type="image/x-icon">
</head>
<body>
<header>
<h1>Apple</h1>
</header>
<nav>
<a href="#">iPhone</a>
<a href="#">iPad</a>
<a href="#">MacBook</a>
<a href="#">Watch</a>
<a href="#">TV</a>
</nav>
<section class="iphone-section">
<div class="iphone-description">
<h3>iPhone 13 Pro</h3>
<p>The iPhone 13 Pro is the latest addition to the iPhone lineup. It features a stunning Super Retina XDR display, a powerful A15 Bionic chip, and an advanced camera system for professional-quality photos and videos.</p>
</div>
<div class="iphone-image">
<img src="images/applle.png" alt="iPhone 13 Pro">
</div>
</section>
<section id="ipad">
<h2>iPad Code Collection</h2>
<div class="code-collection">
<div class="code-snippet">
<h3>Responsive iPad Design</h3>
<p>Make your website responsive for iPad devices using media queries.</p>
<pre>
<code>
</code>
</pre>
</div>
<div class="code-snippet">
<h3>iPad App Development</h3>
<p>Get started with iPad app development using Swift and Xcode.</p>
<pre>
<code>
</code>
</pre>
</div>
<!-- Add more code snippets as needed -->
</div>
</section>
<section>
<h2>Explore MacBook Collection</h2>
<div class="macbook">
<div class="macbook-item">
<img src="https://i.pcmag.com/imagery/reviews/03Zr1IMIMcjkF0kN3zxL5dv-2.jpg" alt="MacBook Air">
<h3>MacBook Air</h3>
<p>Lightness strikes again.</p>
</div>
<div class="macbook-item">
<img src="https://www.apple.com/v/macbook-pro-13/p/images/overview/hero_endframe__bsza6x4fldiq_large_2x.jpg" alt="MacBook Pro 13-inch">
<h3>MacBook Pro 13-inch</h3>
<p>The new standard in power and performance.</p>
</div>
<div class="macbook-item">
<img src="https://cdn.vox-cdn.com/uploads/chorus_asset/file/19395167/vpavic_191118_3800_0122.jpg" alt="MacBook Pro 16-inch">
<h3>MacBook Pro 16-inch</h3>
<p>The best for the brightest.</p>
</div>
</div>
</section>
<header>
<h1>Watch Collection</h1>
</header>
<section>
<div class="watch">
<img src="https://www.apple.com/newsroom/videos/iphone-15-pro-action-button/posters/Apple-iPhone-15-Pro-lineup-Action-button-230912.jpg.large_2x.jpg" alt="Watch 1">
</div>
<div class="watch">
<img src="" alt="">
<div class="watch-details">
<h2>Sporty Chronograph</h2>
<p>A sporty watch with advanced chronograph features.</p>
<p>Price: $249</p>
</div>
</div>
<!-- Add more watches as needed -->
</section>
<section class="apple-tv-section">
<h2>Apple TV</h2>
<p>Experience the future of television with Apple TV. Stream your favorite shows, movies, and more in stunning 4K HDR.</p>
<a href="#">Learn more</a>
</section>
<footer>
© 2024 AppleClone Inc. All rights reserved.
</footer>
</body>
</html>