-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.65 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>flex with responsive design </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="product-show">
<div class="product-card">
<img src="https://images.unsplash.com/photo-1504274066651-8d31a536b11a?w=800&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTZ8fHByb2R1Y3QlMjBpbWd8ZW58MHx8MHx8fDA%3D" alt="">
<h1>Product 1</h1>
<p>earpot 1 </p>
<p>4.0$</p>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1615396899839-c99c121888b0?w=700&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8cHJvZHVjdCUyMGltZ3xlbnwwfHwwfHx8MA%3D%3D" alt="">
<h1>Product 2</h1>
<p>Bioglow:Use Less makeup </p>
<p>12.0$</p>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1549049950-48d5887197a0?q=80&w=1528&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="">
<h1>Product 3</h1>
<p>ClassClean</p>
<p>18.0$</p>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1524638067-feba7e8ed70f?w=700&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fHByb2R1Y3QlMjBpbWd8ZW58MHx8MHx8fDA%3D" alt="">
<h1>Product 4</h1>
<p>Turmeric</p>
<p>23.0$</p>
</div>
</div>
</body>
</html>