-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Products</title>
<link rel="stylesheet" href="./style.css" />
<!-- linking inter font family from google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<h1 id="header">SELECT YOUR CHOICE</h1>
<!-- product category selection tabs -->
<div class="choices-btn-group">
<button><img src="./images/men.png">Men</button>
<button><img src="./images/women.png">Women</button>
<button><img src="./images/kids.png">Kids</button>
</div>
<!-- cards data will show with fethced data from js file-->
<div class="cards"></div>
</div>
<!-- insertion of js file -->
<script src="./script.js"></script>
</body>
</html>