-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (84 loc) · 3.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Landing Page</title>
<link rel="title icon" href="./assets/icons/WebPage.png" alt="icon">
<link rel="stylesheet" type="text/css" href="./styles.css">
<script type="text/javascript" src="./script.js"></script>
</head>
<body>
<header>
<nav>
<div class="header">
<i class="products"></i>
<p>Apple Logo</p>
</div>
<div class="header-nav-links">
<a href="https://www.apple.com/airpods-pro/">Airpods Pro </a>
<a href="https://www.apple.com/macbook-pro-13/">Macbook Pro </a>
<a href="https://www.apple.com/iphone-14-pro/">iPhone 15 </a>
</div>
</nav>
<div class="hero-container">
<div class="hero-text">
<h1>Some amazing products!</h1>
<p>Some of the best Apple products.</p>
<div>
<button>Notify Me! 🔔</button>
</div>
</div>
<div class="hero-img">
<img src="./assets/images/Banner.jpg" alt="Apple Banner Photo" width="200px" height="400px">
</div>
</div>
</header>
<main>
<div class="main-section">
<h2>Discover the innovative world of Apple</h2>
<div class="cards-container">
<!-- First item -->
<div class="card-item">
<h3>Airpods Pro</h3>
<img src="./assets/images/AirpodsPro.jpg" alt="Airpods Pro" width="200px" height="100px">
<p>Rebuilt from the sound up</p>
</div>
<!-- Second item -->
<div class="card-item">
<h3>Macbook Pro</h3>
<img src="./assets/images/MacbookPro.jpg" alt="Macbook Pro" width="300px" height="100px">
<p>Pro anywhere</p>
</div>
<!-- Third item -->
<div class="card-item">
<h3>iPhone 15</h3>
<img src="./assets/images/iPhone14.jpg" alt="iPhone 14" width="200px" height="100px">
<p>Pro. Beyond</p>
</div>
</div>
</div>
<section>
<div class="main-section-quoteblock">
<p id="quote">"Innovation distinguishes between a leader and a follower"</p>
<p id="author">- Steve Jobs</p>
</div>
</section>
<div class="main-section-call-to-action">
<div class="call-to-action-container">
<!-- Notifications section -->
<div class="left">
<p style="font-size: 1.3rem; font-weight: 500;">Sign up for notifications</p>
<p style="font-size: 1rem; font-weight: 300;">Join the Apple fans community 👥</p>
</div>
<!-- Notifications button -->
<div class="right">
<button>Click me 👆🏻</button>
</div>
</div>
</div>
</main>
<footer>
<p>Copyright © Antonio Venzalá Serrano 2023</p>
</footer>
</body>
</html>