-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
72 lines (72 loc) · 3.58 KB
/
product.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
<!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="shortcut icon" href="https://thumbs.dreamstime.com/b/amazon-logo-white-background-montreal-canada-july-printed-paper-98221126.jpg" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="product.css">
<title>Document</title>
</head>
<body>
<!-- NAVIGATION BAR -->
<header class="header">
<nav class="header-nav">
<div class="header-container">
<img class="amazon-logo" src="https://mlsvc01-prod.s3.amazonaws.com/fd4e81f3101/a77159a6-cbf4-46a1-a731-522b77da3e42.png?ver=1649349594000" alt="">
<div class="header-search">
<input class="search-input" type="text">
<button class="search-button">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z" />
</svg>
</button>
</div>
<div class="header-cart">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M3 1a1 1 0 000 2h1.22l.305 1.222a.997.997 0 00.01.042l1.358 5.43-.893.892C3.74 11.846 4.632 14 6.414 14H15a1 1 0 000-2H6.414l1-1H14a1 1 0 00.894-.553l3-6A1 1 0 0017 3H6.28l-.31-1.243A1 1 0 005 1H3zM16 16.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM6.5 18a1.5 1.5 0 100-3 1.5 1.5 0 000 3z" />
</svg>
</div>
<p>Cart</p>
</div>
</div>
</nav>
</header>
<!-- Section -->
<section class="product-heading">
<div class="product-container">
<h1>Colombian Brew Coffee</h1>
</div>
</section>
<!-- section 2 -->
<section class="product-detail">
<div class="product-container">
<div class="product-pic">
<img src="https://m.media-amazon.com/images/I/81L-9HODLKL._SX679_PIbundle-2,TopRight,0,0_AA679SH20_.jpg" alt="">
</div>
<div class="product-detail-body">
<h1 class="product-title">Colombian Brew 3 in 1 Cappuccino Café Latte, Instant Coffee Powder Premix, 10 Sachets Box Pack of 2</h1>
<h3 class="product-price">M.R.P.: ₹398.00
Price: ₹332.00 (₹1,660.00 /100 g) Fulfilled
You Save: ₹66.00 (17%)
Inclusive of all taxes</h3>
<div class="product-above">
<h4>Above this product</h4>
<ul>
<li>Just add hot water & drink. Add ice for cold serving. This is soluble coffee pre-mix. 1 sachet makes 1 cup of 125ml coffee.</li>
<li>Colombian Brew - 3 in 1 coffee pre-mix, Smooth & Strong -10 Sachets Box - Pack of 2</li>
<li>Colombian Brew Coffee is inspired by Franceso Romero, a 16th century Colombian Priest that started Colombia's coffee revolution. Our coffee is sourced from the best coffee plantations in the world.</li>
<li>Fine Texture, Keto, Smooth & Strong</li>
</ul>
</div>
<div class="button">
<button class="by-now">By Now</button>
<button class="add-cart">Add to cart</button>
</div>
</div>
</div>
</section>
</body>
</html>