-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbabies.html
More file actions
148 lines (143 loc) · 4.15 KB
/
babies.html
File metadata and controls
148 lines (143 loc) · 4.15 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>babies page</title>
<link rel="stylesheet" href="./css/categories.css" />
</head>
<body>
<header>
<a class="pointer pm-0 scale-1" href="./index.html">
<img class="logo" src="img/logo.png" height="40" alt="LC-wakiki logo" />
</a>
<div class="navbar">
<nav>
<p class="pointer">Categories ▼</p>
<div class="dropdown">
<a href="./babies.html">babies</a>
<a href="./children.html">children</a>
<a href="./men.html">men</a>
</div>
</nav>
<a href="./about.html">About</a>
</div>
</header>
<main>
<h1>babies category</h1>
<div class="clothes">
<h2 class="title">socks & shoes</h2>
<ul class="clothes-ul">
<li>
<img
src="./img/items/baby-shoes1.jpg"
alt="clothes"
width="300px"
height="300px"
/>
<div class="buy-box">
<p>Green shoes</p>
<div>
<span class="mr-05"> 15<strong>$</strong> </span>
<button class="btn--buy">Buy</button>
</div>
</div>
<hr />
<p>Good green shoes for children</p>
</li>
<li>
<img
src="./img/items/baby-shoes2.jpg"
alt="clothes"
width="300px"
height="300px"
/>
<div class="buy-box">
<p>Brown shoes</p>
<div>
<span class="mr-05"> 18<strong>$</strong> </span>
<button class="btn--buy">Buy</button>
</div>
</div>
<hr />
<p>Good Brown shoes for children</p>
</li>
<li>
<img
src="./img/items/baby-shoes3.jpg"
alt="clothes"
width="300px"
height="300px"
/>
<div class="buy-box">
<p>Pink shoes</p>
<div>
<span class="mr-05"> 24<strong>$</strong> </span>
<button class="btn--buy">Buy</button>
</div>
</div>
<hr />
<p>Good pink shoes for children</p>
</li>
<li>
<img
src="./img/items/baby-socks1.jpg"
alt="clothes"
width="300px"
height="300px"
/>
<div class="buy-box">
<p>Pink sock</p>
<div>
<span class="mr-05"> 34<strong>$</strong> </span>
<button class="btn--buy">Buy</button>
</div>
</div>
<hr />
<p>Good pink shoes for children</p>
</li>
<li>
<img
src="./img/items/baby-socks2.jpg"
alt="clothes"
width="300px"
height="300px"
/>
<div class="buy-box">
<p>Pink shoes</p>
<div>
<span class="mr-05"> 10<strong>$</strong> </span>
<button class="btn--buy">Buy</button>
</div>
</div>
<hr />
<p>Good pink shoes for children</p>
</li>
<li>
<img
src="./img/items/baby-cloths.jpg"
alt="clothes"
width="300px"
height="300px"
/>
<div class="buy-box">
<p>Ink dress</p>
<div>
<span class="mr-05"> 15<strong>$</strong> </span>
<button class="btn--buy">Buy</button>
</div>
</div>
<hr />
<p>Good Ink dress for children</p>
</li>
</ul>
</div>
</main>
<footer>
<span id="js-clock"></span>
</footer>
<script src="js/buyBtn.js"></script>
<script src="js/clock.js"></script>
</body>
</html>