-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathModern.html
More file actions
49 lines (45 loc) · 1.12 KB
/
Modern.html
File metadata and controls
49 lines (45 loc) · 1.12 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NeoLamp</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero">
<nav>
<a href="Index.html">
<img src="images/menu.png" class="menu-img">
</a>
<img src="images/logo.png" class="logo">
<ul>
<li><a href="Latest.html">Latest</a></li>
<li><a href="Modern.html">Modern</a></li>
<li><a href="Contemporary.html">Contemporary</a></li>
<li><a href="Affordable.html">Affordable</a></li>
</ul>
</nav>
<div class="small-container">
<div class="row row-2">
<h2>Modern Products</h2>
</div>
</div>
<div class="small-container">
<div class="row">
<div class="col-4">
<img src="images/product-8.jpg">
<h4>Niyofa Lamp</h4>
<p>$50.00</p>
</div>
<div class="col-4">
<img src="images/product-9.jpg">
<h4>Touch Table Lamp</h4>
<p>$90.00</p>
</div>
<div class="col-4">
<img src="images/product-10.jpg">
<h4>Tofty Lamp</h4>
<p>$20.00</p>
</div>
</body>
</html>