-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (113 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<!-- CSS File -->
<link rel="stylesheet" href="./assets/css/style.css" />
<title>🎧 Apple Air Pods — The Luxury Rythm</title>
</head>
<body>
<header class="header-sec">
<nav class="nav bd-grid">
<a href="#" class="nav-logo">Apple Air Pods</a>
<div class="nav-menu" id="nav--menu">
<ul class="nav-list">
<li class="nav-item">
<a href="#" class="nav-link">Description</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Specifications</a>
</li>
</ul>
</div>
<div class="nav-action">
<div class="nav-toggle" id="nav--toggle">
<img
src="./assets/icons/bx-chevron-down.svg"
alt="drop-down-icon"
/>
</div>
<a href="#" class="nav-btn">Compare</a>
</div>
</nav>
</header>
<main class="main-sec bd-grid">
<section class="home">
<!-- info section -->
<div class="home-data">
<h1 class="home-title">AirPods</h1>
<p class="home-description">
AirPods provide you with an unparalleled wireless experience, as
they now offer more hours for talking and come with a new wireless
<br />
charging case.
</p>
</div>
<!-- images section -->
<div class="home-img">
<img src="./assets/images/airpod1.png" class="airpod1" />
<img src="./assets/images/airpod2.png" class="airpod2" />
</div>
<!-- scroll svg section -->
<div class="home-scroll">
<span class="home-scroll-text">Scroll down for more</span>
<a href="#detail--sec" class="home-scroll-icon">
<img src="./assets/icons/bx-mouse.svg" class="home-scroll-icon" />
</a>
</div>
</section>
<!-- Details of airpod -->
<section class="detail-sec" id="detail--sec">
<div class="details">
<div class="details-content">
<div class="details-box">
<span class="details-initial">More Than</span>
<h3 class="details-title">24<span> h</span></h3>
<p class="details-description">
of battery with<br />
the charging case
</p>
</div>
<div class="details-box">
<span class="details-initial">Up To</span>
<h3 class="details-title">5<span> h</span></h3>
<p class="details-description">
of battery with<br />
a single charge
</p>
</div>
<div class="details-box">
<span class="details-initial">Only</span>
<h3 class="details-title">15<span> min</span></h3>
<p class="details-description">
of charging equals<br />
upto 3 hours of<br />
audio
</p>
</div>
</div>
<div class="details-img">
<img src="./assets/images/airpods.png" class="airpods" />
</div>
</div>
</section>
</main>
<!-- GSAP -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<!-- Timeline Max -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TimelineMax.min.js"></script>
<!-- Scroll magic -->
<script src="//cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/animation.gsap.min.js"></script>
<!-- Script File -->
<script src="./assets/js/script.js"></script>
</body>
</html>