-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 1.9 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
<!DOCTYPE html>
<html>
<head>
<title>Apple</title>
</head>
<body>
<header>
<div class="logo">
<img src="apple-logo.png" alt="Apple logo">
</div>
<nav>
<ul>
<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>
</ul>
</nav>
</header>
<main>
<div class="hero">
<img src="hero-image.jpg" alt="Hero image">
<div class="hero-text">
<h1>Introducing the new iPhone 12</h1>
<p>With 5G capability, Ceramic Shield, and A14 Bionic chip, the iPhone 12 is the most powerful iPhone yet.</p>
<a href="#" class="button">Learn more</a>
</div>
</div>
<div class="featured-products">
<h2>Featured products</h2>
<div class="product">
<img src="product-image-1.jpg" alt="Product image">
<h3>MacBook Pro</h3>
<p>Powerful and portable, the new MacBook Pro is perfect for any task.</p>
<a href="#" class="button">Learn more</a>
</div>
<div class="product">
<img src="product-image-2.jpg" alt="Product image">
<h3>iPad Pro</h3>
<p>The iPad Pro features a stunning display, fast performance, and pro-level apps.</p>
<a href="#" class="button">Learn more</a>
</div>
<div class="product">
<img src="product-image-3.jpg" alt="Product image">
<h3>AirPods Max</h3>
<p>Experience unparalleled sound quality with the new AirPods Max.</p>
<a href="#" class="button">Learn more</a>
</div>
</div>
</main>
<footer>
<div class="links">
<ul>
<li><a href="#">About Apple</a></li>
<li><a href="#">Newsroom</a></li>
<li><a href="#">Investors</a></li>
<li><a href="#">Events</a></li>