-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (68 loc) · 2.11 KB
/
index.html
File metadata and controls
69 lines (68 loc) · 2.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>Mavic</title>
</head>
<body>
<header class="header">
<nav class="header__navbar">
<figure class="header__navbar--logo">
<img src="https://img.icons8.com/ios/50/000000/menu.png"/>
</figure>
<ul class="header__navbar--pages">
<li>Home</li>
<li>Product</li>
<li>Services</li>
<li>FAQ</li>
</ul>
<figure class="header__navbar--cart">
<img src="https://img.icons8.com/ios/50/000000/shopping-cart.png"/>
</figure>
</nav>
</header>
<main class="product container">
<section class="product__description">
<div class="product__description--container">
<h3>Mavic 2 Pro</h3>
<p>The mavic 2 offers iconic Hasselblad image quality on the Pro and a high-perfomance zoom lens on the Zoom</p>
<h3>USD $1,499</h3>
<p>Shipping: Free</p>
</div>
<div class="product__description--features">
<h3>Features</h3>
<div class="features">
<span>Hassebled camera</span>
<span>1" CMOS Sensor</span>
<span>10-bit HDR Video</span>
<span>Adjustable Aperture</span>
<span>Hyperlapse</span>
<span>10-bit Dlog M</span>
</div>
</div>
<button class="feature__button">Order Now</button>
</section>
<section class="product__image">
<div class="product__image--container">
<img src="./images/mavic.png" alt="mavic2">
</div>
<div class="product__buttons">
<button class="back">Back</button>
<button class="next">Next</button>
</div>
<div class="product__buttons--mobile">
<input type="radio">
<input type="radio" checked>
<input type="radio">
</div>
</section>
<section class="social_media">
<a href=""><p>Facebook</p></a>
<a href=""><p>Twitter</p></a>
<a href=""><p>Instagram</p></a>
</section>
</main>
</body>
</html>