-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-2.html
185 lines (161 loc) · 5.54 KB
/
product-2.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!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" />
<title>Rustic Vase set | Avion</title>
<link rel="stylesheet" href="styles/commons.css" />
<link rel="stylesheet" href="styles/products.css" />
<link rel="stylesheet" href="styles/normalize.css" />
<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=Titillium+Web:wght@200;300;400&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="products-header">
<div class="header-top">
<div class="header-content">
<img src="icons/search.svg" alt="" />
<a href="index.html"> <h1>Avion</h1></a>
<div class="header-control">
<img src="icons/shopping-bag-dark.svg" alt="" />
<img src="icons/user.svg" alt="" />
</div>
</div>
</div>
<nav>
<ul>
<li><a href=""> Plant post</a></li>
<li><a href=""> Ceramics</a></li>
<li><a href=""> Tables </a></li>
<li><a href=""> Chairs </a></li>
<li><a href=""> Crockery</a></li>
<li><a href=""> Tableware </a></li>
<li><a href=""> Cutlery</a></li>
</ul>
</nav>
</header>
<section class="product-details">
<div class="container inner">
<figure>
<img src="images/product-image-02.png" alt="" />
</figure>
<div class="inner-right">
<div class="right-title">
<h1>Rustic Vase set</h1>
<p class="price">$155</p>
</div>
<div>
<h4>Product description</h4>
<p>
A timeless design, with premium materials features as one of our
most popular and iconic pieces. The dandy chair is perfect for any
stylish living space with beech legs and lambskin leather
upholstery.
</p>
</div>
<div class="demensions">
<h4>Demensions</h4>
<ul>
<li>
<span>Height</span>
<p>110cm</p>
</li>
<li>
<span>Width</span>
<p>75cm</p>
</li>
<li>
<span>Depth</span>
<p>50cm</p>
</li>
</ul>
</div>
<div class="buttons">
<button class="add-to-cart">
<img src="icons/shopping-bag-light.svg" alt="" /> Add to cart
</button>
<button class="save-to-fav bubbly-button">
<img src="icons/heart.svg" alt="" /> Save to favorites
</button>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer-top">
<div class="footer-menu">
<h3 class="footer-titles">Menu</h3>
<ul>
<li><a href="">New arrivals</a></li>
<li><a href="">Best sellers</a></li>
<li><a href="">Recently viewed</a></li>
<li><a href="">Popular the week</a></li>
<li><a href="">All products</a></li>
</ul>
</div>
<div class="footer-menu">
<h3 class="footer-titles">Categories</h3>
<ul>
<li><a href="">Crockery</a></li>
<li><a href="">Furniture</a></li>
<li><a href="">Homeware</a></li>
<li><a href="">Plant pots</a></li>
<li><a href="">Chairs</a></li>
<li><a href="">Crockery</a></li>
</ul>
</div>
<div class="footer-menu">
<h3 class="footer-titles">Our company</h3>
<ul>
<li><a href="">About us </a></li>
<li><a href="">Vacancies</a></li>
<li><a href="">Contact us</a></li>
<li><a href="">Privacy</a></li>
<li><a href="">Returns policy</a></li>
</ul>
</div>
<div class="footer-form">
<h3 class="footer-titles">Join our mailing list</h3>
<form action="">
<input type="email" name="email" id="email" required />
<button>Sign up</button>
</form>
</div>
</div>
<div class="footer-bottom">
<p>Copyright2022 Avion LTD</p>
<ul>
<li>
<a
target="_blank"
href="https://www.linkedin.com/in/hadis-mohammadi/"
>
<img src="icons/linkedin.svg" alt="" />
</a>
</li>
<li>
<a
target="_blank"
href="https://www.instagram.com/code_with_hadis/"
>
<img src="icons/instagram.svg" alt="" />
</a>
</li>
<li>
<a target="_blank" href="https://github.com/hadismohammadi/">
<img src="icons/github.svg" alt="" />
</a>
</li>
</ul>
</div>
</div>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>