-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (101 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Catalog</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
header {
text-align: center;
margin-bottom: 20px;
}
section {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.product {
border: 1px solid #ddd;
padding: 15px;
border-radius: 8px;
width: 200px;
text-align: center;
}
img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
</style>
</head>
<body>
<header>
<h1>Product Catalog</h1>
</header>
<section>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=recipe" alt="Product 1">
<h3>Product 1</h3>
<p>Description of Product 1.</p>
<p>Price: $19.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=gallary" alt="Product 2">
<h3>Product 2</h3>
<p>Description of Product 2.</p>
<p>Price: $24.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=blog" alt="Product 3">
<h3>Product 3</h3>
<p>Description of Product 3.</p>
<p>Price: $29.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=portfolio" alt="Product 4">
<h3>Product 4</h3>
<p>Description of Product 4.</p>
<p>Price: $34.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=tech" alt="Product 5">
<h3>Product 5</h3>
<p>Description of Product 5.</p>
<p>Price: $39.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=todoapp" alt="Product 6">
<h3>Product 6</h3>
<p>Description of Product 6.</p>
<p>Price: $44.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=task" alt="Product 7">
<h3>Product 7</h3>
<p>Description of Product 7.</p>
<p>Price: $49.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?tech=code" alt="Product 8">
<h3>Product 8</h3>
<p>Description of Product 8.</p>
<p>Price: $54.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=design" alt="Product 9">
<h3>Product 9</h3>
<p>Description of Product 9.</p>
<p>Price: $59.99</p>
</div>
<div class="product">
<img src="https://source.unsplash.com/1600x900/?web=product" alt="Product 10">
<h3>Product 9</h3>
<p>Description of Product 10.</p>
<p>Price: $60.99</p>
</section>
</body>
</html>