-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.4 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./assest/css/style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="card">
<div class="card__heart">
<i class="bx bx-heart"></i>
</div>
<div class="card__card">
<i class="bx bx-cart"></i>
</div>
<div class="card__img">
<img src="https://raw.githubusercontent.com/namndwebdev/html-css-js-thuc-chien/main/Product%20Card/Nike%20Zoom%20KD%2012.png" alt="">
</div>
<div class="card__title">
nike zoom kd 12
</div>
<div class="card__price">
$99
</div>
<div class="card__size">
<h3>Size:</h3>
<span>6</span>
<span>7</span>
<span>8</span>
<span>9</span>
</div>
<div class="card__color">
<h3>Color:</h3>
<span class="card__color__green"></span>
<span class="card__color__red"></span>
<span class="card__color__black"></span>
</div>
<div class="card__action">
<button>Buy Now</button>
<button>Add Cart</button>
</div>
</div>
</body>
</html>