-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Macbook Air</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header id="header">
<div id="logo">
<img src="https://thumbs.dreamstime.com/b/apple-logo-19106337.jpg" />
<span>Macbook Air</span>
</div>
<nav id="nav-bar">
<a href="#features">Features</a>
<a href="#prices">Prices</a>
<a href="#contact-us">Contact us</a>
</nav>
</header>
<main id="main">
<div id="top-title">
<h1>Macbook Air <span>15"</span></h1>
<div id="main-image">
<img
src="https://www.apple.com/newsroom/images/live-action/wwdc-2023/standard/macbook-air-15-in/Apple-WWDC23-MacBook-Air-15-in-hero-230605_big.jpg.large.jpg"
/>
</div>
</div>
<div id="feat-prices-container">
<div id="features">
<h1>Features</h1>
<ul class="list-features-main">
<li>8-Core CPU</li>
<li>10-Core GPU</li>
<li>8GB Unified Memory</li>
</ul>
<ul class="list-features-others">
<li>16-core Neural Engine</li>
<li>38.91 cm (15.3-inch) Liquid Retina display with True Tone3</li>
<li>1080p FaceTime HD camera</li>
<li>MagSafe 3 charging port</li>
<li>Two Thunderbolt / USB 4 ports</li>
<li>Magic Keyboard with Touch ID</li>
<li>Force Touch trackpad</li>
<li>35W Dual USB-C Port Power Adapter</li>
</ul>
</div>
<div class="vertical-bar"></div>
<div id="prices">
<h1>Prices</h1>
<div class="price-container">
<div class="price-inner ssd-256-price">
<p>256GB SSD Storage</p>
<h3 class="price">
Rs. <span>130000.<span class="paise">00</span></span>
</h3>
<button class="price-select">Select</button>
</div>
<div class="price-inner ssd-512-price">
<p>512GB SSD Storage</p>
<h3 class="price">
Rs. <span>154000.<span class="paise">00</span></span>
</h3>
<button class="price-select">Select</button>
</div>
</div>
</div>
</div>
<div id="contact-us">
<h3>Contact Us</h3>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input type="email" placeholder="Enter email" id="email">
<input type="submit" value="Submit">
</form>
</div>
</main>
<footer>
<p>This website is made for learning purpose only, <b>Macbook Air is product of Apple Inc.</b></p>
<p>The information provided may or may not be correct</p>
<p>For actual info of product display, visit <a href="https://www.apple.com/in/shop/buy-mac/macbook-air/15-inch-m2">Apple</a></p>
</footer>
</body>
</html>