-
Notifications
You must be signed in to change notification settings - Fork 4
/
products.html
41 lines (36 loc) · 1.45 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
<html>
<head>
<title>Products</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body class="prod-body">
<div class="p-container">
<div class="top-part">
<div><h2>Products</h2></div>
<a href="./index.html">Back to home</a>
</div>
<div class="bottom-part">
<div class="product-container">
<div class="product-item">
<div class="logo"></div>
<div >Product 1</div>
<div class="description">Description of product 1</div>
<a href="./products.html" class="link">Buy</a>
</div>
<div class="product-item">
<div class="logo"></div>
<div >Product 2</div>
<div class="description">Description of product 2</div>
<a href="./products.html" class="link">Buy</a>
</div>
<div class="product-item">
<div class="logo"></div>
<div >Product 2</div>
<div class="description">Description of product 2</div>
<a href="./products.html" class="link">Buy</a>
</div>
</div>
</div>
</div>
</body>
</html>