-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
183 lines (161 loc) · 6.32 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="wdth=device-width, initial-scale=1.0">
<title>Maynooth</title>
<link rel="icon" type="image/x-icon" href="pictures/logo/favicon.png">
<link rel="stylesheet" href="style1.css">
</head>
<body>
<header class="header">
<span class = "logo-pic">
<a class = "logoN" href="index.html"> <img src = "pictures/logo/maynoothLOGO.png" width="37" height="25" alt="logo">MAYNOOTH</a>
</span>
<!-- Hamburger icon -->
<input class="side-menu" type="checkbox" id="side-menu">
<label class="hamb" for="side-menu">
<span class="hamb-line"></span>
</label>
<nav class="nav">
<ul class="menu">
<li class = "nav_item">
<p><a href="kitchen.html">KITCHEN</a></p>
</li>
<li class = "nav_item">
<p><a href="product.html">PRODUCT</a></p>
</li>
<li class = "nav_item">
<p><a href="inspiration.html">INSPIRATION</a></p>
</li>
<li class = "nav_item">
<p><a href="contactUs.html">CONTACT</a></p>
</li>
</ul>
</nav>
</header>
<main>
<div class="home-welcome">
<div class = "welcome-pic">
<img src = "pictures/main/MainPic.jpg" alt="main picture" id="bigPic">
<div class="welcome-text">
<p>Welcome to MAYNOOTH</p>
<p>Make yourself at home</p>
</div>
</div>
</div>
<div class="clearance_main__container">
<h2>Clearance deals </h2>
<div class="clearance_main">
<div>
<img src = "pictures/main/greySofa.jpg"
alt="light gray sofa" width="300" height="400">
<div class="clearance-capt">
<p>Medium light gray sofa</p>
<div class="cl-price-capt">
<p class="new-price">150$</p>
<p class="old-price">246$</p>
</div>
</div>
</div>
<div>
<img src = "pictures/main/workingTable.jpg"
alt="wooden table" width="300" height="400">
<div class="clearance-capt">
<p>Wooden table for work</p>
<div class="cl-price-capt">
<p class="new-price">170$</p>
<p class="old-price">255$</p>
</div>
</div>
</div>
<div>
<img src = "pictures/main/clearanceBed.jpg"
alt="Bed with a wooden back" width="300" height="400">
<div class="clearance-capt">
<p>Bed with a wooden back</p>
<div class="cl-price-capt">
<p class="new-price">380$</p>
<p class="old-price">576$</p>
</div>
</div>
</div>
</div>
</div>
<div class ="shopByRoom__container">
<h2> Shop by room</h2>
<div class="room1">
<img src = "pictures/main/MainKitchen.jpeg"
alt="Kitchen" width="450" height="350">
<div class="room-text"><a href = "kitchen.html"> KITCHEN </a>
<p>Shop for kitchen</p>
</div>
</div>
<div class="room2">
<div class="room-text nd_room"> BEDROOM
<p>Shop for bedroom</p>
</div>
<img src = "pictures/main/MainBedroom.jpeg"
alt="Bedroom" width="450" height="350">
</div>
<div class="room1">
<img src = "pictures/main/MainLivingRoom.jpeg"
alt="Living Room" width="450" height="350">
<div class="room-text"> LIVING ROOM
<p>Shop for living room</p>
</div>
</div>
<div class="room2">
<div class="room-text nd_room"> BATHROOM
<p>Shop for bathroom</p>
</div>
<img src = "pictures/main/MainBathroom.jpeg"
alt="Bathroom" width="450" height="350">
</div>
</div>
</main>
<footer>
<div class = "footer__container">
<div class=" footer-cont1">
<div class="footer_block">
<p>Links</p>
<div>
<ul class="f-menu">
<li class = "f-item">
<p><a href="kitchen.html">Kitchen</a></p>
</li>
<li class = "f-item">
<p><a href="product.html">Product</a></p>
</li>
<li class = "f-item">
<p><a href="inspiration.html">Inspiration</a></p>
</li>
<li class = "f-item">
<p><a href="contactUs.html">Contact</a></p>
</li>
</ul>
</div>
</div>
<div class="footer_block">
<p>Info</p>
<div>
<p>Shipping in EU</p>
<p>Free delivery for permanent clients</p>
<p>Making you feel home</p>
<p>since 2020</p>
</div>
</div>
</div>
<div class="footer-cont">
<div class="footer_end">
<p>Maynooth</p>
<p>Made as a student project</p>
<p>at UHK FIM</p>
<p>by Anhelina Kulkova</p>
<p>last updated: 04.07.2023</p>
</div>
</div>
</div>
</footer>
</body>
</html>