-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
114 lines (89 loc) · 3.15 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/navbar.css">
<link rel="stylesheet" href="./css/product.css">
<title>Frontend Mentor | E-commerce product page</title>
</head>
<body>
<header id= "container-header">
<div class="nav-container">
<div class="hamburger">
<div class="_layer -top"></div>
<div class="_layer -mid"></div>
<div class="_layer -bottom"></div>
</div>
<div class="logo">
<img src="images/logo.svg" alt="logo">
</div>
<nav class="menuppal">
<ul>
<li><a href="#">Collections</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
<div class="container-icons">
<div id="buy">
<img src="images/icon-cart.svg" alt="Carrito">
</div>
<div id="avatar">
<img src="images/image-avatar.png" alt="Avatar">
</div>
</div>
</header>
<main>
<div id="container-product">
<div class="hero-container">
<div class="image-product">
</div>
</div>
<div class="container-product">
<div class="product-info">
<h1>Sneaker Company</h1>
<h2>Fall Limited Edition Sneakers</h2>
<p>These low-profile sneakers are your perfect casual wear companion. Featuring a
durable rubber outer sole, they’ll withstand everything the weather can offer.</p>
<div class="price">
<div class="price-discount">
<h2>$125.00</h2>
<span class="discount">
50%
</span>
</div>
<h3>$250.000</h3>
</div>
<div id="buy-container">
<div class="quantity">
<button>
<img src="images/icon-minus.svg" alt="">
</button>
<h4>0</h4>
<button>
<img src="images/icon-plus.svg" alt="">
</div>
<div id="buy-button">
<button >
<img src="images/icon-cart.svg" alt="Carrito">
Add to cart
</button>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/JoseGonzalez-git/ecommerce-product-page" target="_blank">Jose Gonzalez</a>.
</div>
</footer>
<script src="./js/navbar.js"></script>
</body>
</html>