-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
83 lines (66 loc) · 1.85 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
<!DOCTYPE html>
<head>
<title>products</title>
<link rel="stylesheet" href="style.css">
<style>
table{
margin:auto;
text-align: center;
border-collapse: collapse;
}
table,th,td{
border: 2px solid rgb(211, 130, 97);
}
img{
width: 100px;
height: 100px;
padding: 10px;
border-radius: 20px;
}
tr{
background-color: #f2e2d2;
font-size: 20px;
}
th{
background-color: #ffbb33;
color: #5f4b3a;
}
</style>
</head>
<body>
<section class="header">
<ul>
<li><a href="contact.html" target="_blank">Contact Us</a></li>
<li><a href="products.html">Product</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</section>
<h1>Our Pastry Products</h1>
<table >
<tr>
<th>Product Name</th>
<th>Description</th>
<th>Image</th>
</tr>
<tr>
<td>Cakes</td>
<td>Our cakes are made with the finest ingredients, perfect for any celebration or sweet craving.</td>
<td><img src="cakes.jpg" alt="cake"></td>
</tr>
<tr>
<td>Cookies</td>
<td>Soft, chewy, and freshly baked cookies that are perfect for any time of the day.</td>
<td><img src="cookies.jpg" alt="cookies" ></td>
</tr>
<tr>
<td>Muffins</td>
<td>Our muffins are light, fluffy, and come in a variety of delicious flavors like blueberry and chocolate chip.</td>
<td><img src="muffins.jpg" alt="muffins"></td>
</tr>
</table>
<br><br><br><br><br><br>
<footer>
<p>©2025 Pastry shop.All Rights Reserved</p>
</footer>
</body>
</html>