-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlivingroom.php
184 lines (147 loc) · 7.47 KB
/
livingroom.php
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
<!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="styles/livingroom-style.css">
<title>LIVINGROOM</title>
<!-- Favicon -->
<link rel="icon" href="favicon.png" type="image/png">
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Livvic&display=swap" rel="stylesheet">
<!-- Css Plugins for Fonts i.e. Google Fonts , Font Awesome! -->
<link rel="stylesheet" href="styles/font-awesome.min.css"/>
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<!-- Css Theme -->
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" type="text/css" href="navbar.css">
<!-- Js Script -->
<link rel="stylesheet" type="text/js" href="js/script.js">
<!-- JSON -->
<link rel="manifest" href="manifest.json">
</head>
<body>
<!-- Navbar -->
<?php include 'navbar.php'; ?>
<main class="main-content">
<div class="container-withspace">
<div class="categorie-name">LIVINGROOM</div>
<div class="content-container">
<div class="item bottom-sale-border-bedroom1">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom1.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">quilted white comforter</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom2">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom2.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">well-arrange room
</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom3">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom3.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">black table lamp on nightstand
</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom4">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom4.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">well-arrange room
</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom1">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom5.jpg" alt="LIVINGROOM"></div>
<div class="description">
<div class="item-name">gray bed in bedroom</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom2">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom6.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">view of bedroom with spherical pendant lamp</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom3">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom7.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">view of bedroom with spherical pendant lamp</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom4">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom8.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">
black steel bed frame near window</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom1">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom9.jpg" alt="LIVINGROOM">
</div>
<div class="description" >
<div class="item-name">white mosquito net with brown wooden bed frame</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom2">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom10.jpg" alt="LIVINGROOM">
</div>
<div class="description">
<div class="item-name">white bed mattress</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom3">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom11.jpg" alt="LIVINGROOM"></div>
<div class="description">
<div class="item-name">colorful bedroom to attract your children</div>
</div>
</div>
<div class="item bottom-sale-border-bedroom4">
<div class="close"></div>
<div class="img-div">
<img class="item-img" src="img/livingroom12.jpg" alt="LIVINGROOM"></div>
<div class="description">
<div class="item-name">colorful bedroom for children with whit bed </div>
</div>
</div>
</div>
</div>
</main>
<!-- FOOTER -->
<?php include'footer.php'; ?>
<script src="https://use.fontawesome.com/48ea71726e.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</body>
</html>