-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (143 loc) · 6.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Apple</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<header>
<nav>
<a class="logo" href="#">
<img src="images/logo.png" alt="Apple Logo" />
</a>
<ul class="nav-links">
<li><a href="#">Mac</a></li>
<li><a href="#">iPad</a></li>
<li><a href="#">iPhone</a></li>
<li><a href="#">Watch</a></li>
<li><a href="#">TV</a></li>
<li><a href="#">Music</a></li>
<li><a href="#">Support</a></li>
<li>
<a href="#"><img src="images/search.png" alt="Search Icon" /></a>
</li>
<li>
<a href="#"><img src="images/bag.png" alt="Bag Icon" /></a>
</li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>All the tools<br />you need</h1>
<p>Create and build your own website</p>
<button>Learn More</button>
</section>
<section class="products">
<h2>Our Products</h2>
<div class="product-grid">
<div class="product-item">
<img src="images/macbook-pro.png" alt="MacBook Pro" />
<h3>MacBook Pro</h3>
<p>The ultimate pro notebook, now with M1 Pro or Max chip</p>
<button>Buy Now</button>
</div>
<div class="product-item">
<img src="images/ipad-pro.png" alt="iPad Pro" />
<h3>iPad Pro</h3>
<p>Powerful productivity features to get more done on iPad</p>
<button>Buy Now</button>
</div>
<div class="product-item">
<img src="images/iphone-13.png" alt="iPhone 13" />
<h3>iPhone 13</h3>
<p>Super Retina XDR display with ProMotion. A15 Bionic chip</p>
<button>Buy Now</button>
</div>
<div class="product-item">
<img src="images/apple-watch.png" alt="Apple Watch Series 7" />
<h3>Apple Watch Series 7</h3>
<p>The most durable Apple Watch ever</p>
<button>Buy Now</button>
</div>
</div>
</section>
<section class="media">
<h2>Featured Media</h2>
<div class="media-grid">
<div class="media-item">
<img src="images/macbook-pro-media.png" alt="MacBook Pro" />
<p>Check out the new MacBook Pro with the incredible M1 Pro and Max chip</p>
</div>
<div class="media-item">
<img src="images/ipad-pro-media.png" alt="iPad Pro" />
<p>The all-new iPad Pro with Liquid Retina XDR and Apple M1 chip</p>
</div>
<div class="media-item">
<img src="images/apple-music.png" alt="Apple Music" />
<p>
Get 3 months of Apple Music free and listen ad-free with your iPhone,
iPad, and more
</p>
</div>
<div class="media-item">
<img src="images/apple-arcade.png" alt="Apple Arcade" />
<p>
The ultimate gaming experience with Apple Arcade. Play across devices,
online or offline.
</p>
</div>
</div>
<button>View All</button>
</section>
<section class="services">
<h2>Apple Services</h2>
<div class="services-grid">
<div class="services-item">
<img src="images/apple-pay.png" alt="Apple Pay" />
<h3>Apple Pay</h3>
<p>
Make secure and contactless payments in stores, in apps, and on the web
</p>
</div>
<div class="services-item">
<img src="images/icloud.png" alt="iCloud" />
<h3>iCloud</h3>
<p>
Store your photos, videos, documents, and more, and access them on your
devices
</p>
</div>
<div class="services-item">
<img src="images/apple-tv.png" alt="Apple TV+" />
<h3>Apple TV+</h3>
<p>
Watch original shows and movies on the Apple TV app, now including Apple
TV+
</p>
</div>
<div class="services-item">
<img src="images/arcade.png" alt="Apple Arcade" />
<h3>Apple Arcade</h3>
<p>
Play groundbreaking new games made by many of the world’s most
innovative developers.
</p>
</div>
</div>
<button>Learn More</button>
</section>
<footer>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms and Conditions</a></li>
<li><a href="#">Accessibility</a></li>
</ul>
<p>© 2022 Apple Inc. All rights reserved</p>
</footer>
</main>
<script src="script.js"></script>
</body>
</html>