-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
181 lines (160 loc) · 6.63 KB
/
products.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/products.css">
<title>products
</title>
</head>
<body>
<div class="container">
<div class="menu">
<a href="#"><img src="img/logo.png" alt="logo"></a>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="products.html">PRODUCTS</a></li>
<li><a href="#">HISTORY</a></li>
<li><a href="product-info.html">SHOWROOM</a></li>
<li><a href="contacts.html">CONTACT</a></li>
<li><img src="img/search.png" alt="search"></li>
</ul>
<p>Our Products Names</p>
</div>
<div class="first">
<ul>
<li><a href="#">ALL</a></li>
<li><a href="#">HOME</a></li>
<li><a href="#">OFFICE</a></li>
<li><a href="#">FURNITURE</a></li>
<li><a href="#">MODERN</a></li>
<li><a href="#">CLASSIC</a>
</ul>
<div class="break"></div>
<div class="images">
<a href="#">
<span class="image-container">
<img src="img/product-11.jpg" alt="product-1">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-21.jpg" alt="product-2">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-31.jpg" alt="product-3">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-41.jpg" alt="product-4">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-5.jpg" alt="product-4">
</span>
</a>
<a href="#">
<span class="image-container image-6">
<img src="img/product-6.jpg" alt="product-4">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-11.jpg" alt="product-1">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-21.jpg" alt="product-2">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-31.jpg" alt="product-3">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-41.jpg" alt="product-4">
</span>
</a>
<a href="#">
<span class="image-container">
<img src="img/product-5.jpg" alt="product-4">
</span>
</a>
<a href="#">
<span class="image-container image-6">
<img src="img/product-6.jpg" alt="product-4">
</span>
</a>
</div>
<div class="load"><img src="img/load.png" alt="load"></div>
</div>
<div class="second">
<div class="pic1">
<div class="trending_1">
<h3>exclusive</h3>
<h1>Fishnet Chair</h1>
<p>Seat and back with upholstery made of cold cure foam.<br> Steel frame, available in matt</p>
<a href="#">Order Us</a>
</div>
</div>
<div class="pic2">
<div class="trending_2">
<h3>exclusive</h3>
<h1>Fishnet Chair</h1>
<p>Seat and back with upholstery made of cold cure foam.<br> Steel frame, available in matt</p>
<a href="#">Order Us</a>
</div>
</div>
</div>
<footer class="footer">
<div class="information">
<div class="coloumn_1">
<div class="title">Contact us</div>
<div class="address">132A Bridge Road Richmond VIC Australia.</div>
<div class="phone">Talk to us on 1300 132</div>
<div class="email"><a href="mailto:[email protected]">[email protected]</a></div>
</div>
<div class="coloumn_2">
<div class="title">Useful information</div>
<div class="info">
<div><a href="#">sales terms</a></div>
<div><a href="#">architect accounts</a></div>
<div><a href="#">customer care</a></div>
<div><a href="#">careers</a></div>
<div><a href="#">delivery</a></div>
<div><a href="#">exchanges & returns</a></div>
</div>
</div>
<div class="coloumn_3">
<div class="title">Let's stay in touch!</div>
<div class="details">
Subscribe to know about our latest news, products and special offers Jast for subscribers.
</div>
<form class="subscribe" action="#">
<input class="input" type="text" placeholder="your email address">
<input class="submit" type="submit" value="">
</form>
</div>
</div>
<div class="copyrights">
<div class="copyright">© copyright - Interior 2016. All rights reserved.</div>
<div class="social">
<a href="#"> <img src="./img/facebook.png" alt="facebook"> </a>
<a href="#"> <img src="./img/twitter.png" alt="twitter"> </a>
<a href="#"> <img src="./img/google.png" alt="google"> </a>
<a href="#"> <img src="./img/pinterest.png" alt="pinterest"> </a>
</div>
<div class="terms"><a href="#">Terms & conditions</a> / <a href="#">privacy policy & cookies</a></div>
</div>
</footer>
</div>
</body>
</html>