-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.18 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Online Shopping</title>
<link rel="stylesheet" href="style.css" />
<script src="src/main.js" defer></script>
</head>
<body>
<img src="img/logo.png" alt="Logo" class="logo" />
<div class="btns">
<button class="btn">
<img src="img/blue_t.png" alt="tshirt" class="imgBtn" />
</button>
<button class="btn">
<img src="img/blue_p.png" alt="pants" class="imgBtn" />
</button>
<button class="btn">
<img src="img/blue_s.png" alt="skirt" class="imgBtn" />
</button>
<button class="btn colorBtn blue">Blue</button>
<button class="btn colorBtn yellow">Yellow</button>
<button class="btn colorBtn pink">Pink</button>
</div>
<ul class="item-list">
<li class="item">
<img src="" alt="" class="item__img" />
<span class="item__text"></span>
</li>
</ul>
</body>
</html>