-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask04.html
More file actions
30 lines (26 loc) · 848 Bytes
/
task04.html
File metadata and controls
30 lines (26 loc) · 848 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="style04.css">
</head>
<body>
<div class="product">
<div class="productName">Product 1 name</div>
<img src="http://unsplash.it/150/150?random&gravity=center" alt="">
<button>Подробнее</button>
</div>
<div class="product">
<div class="productName">Product 2 name</div>
<img src="http://unsplash.it/150/150?random&gravity=center" alt="">
<button>Подробнее</button>
</div>
<div class="product">
<div class="productName">Product 3 name</div>
<img src="http://unsplash.it/150/150?random&gravity=center" alt="">
<button>Подробнее</button>
</div>
<script src="script04.js"></script>
</body>
</html>