-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
52 lines (52 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fashion Beauty Products</title>
</head>
<body>
<center>
<h1>Our Products</h1>
<a href="index.html">Home</a>
<a href="#">Products</a>
<a href="models.html">ModelsLook</a>
<a href="contact.html">Contact</a>
<br><br>
<table>
<img src="images/beauty-care.jpg" alt="main-img" width="860" height="500">
<hr>
<tr>
<td>
<img src="images/foundation.avif" alt="skin-care" width="460" height="400">
<h4>Skin Foundation</h4>
</td>
<td>
<img src="images/lipstick.jpg" alt="skin-care" width="460" height="400">
<h4>Lipstick Shades</h4>
</td>
</tr>
<tr>
<td>
<img src="images/eyeshadow-pallete.jpg" alt="skin-care" width="460" height="400">
<h4>Eye-Shades</h4>
</td>
<td>
<img src="images/blush-on.jpg" alt="skin-care" width="460" height="400">
<h4>Blush-On pallete</h4>
</td>
</tr>
<tr>
<td>
<img src="images/eye-liner.png" alt="skin-care" width="460" height="400">
<h4>Eye-Liner</h4>
</td>
<td>
<img src="images/mascara.avif" alt="skin-care" width="460" height="400">
<h4>Eye Mascara</h4>
</td>
</tr>
</table>
</center>
</body>
</html>