-
Notifications
You must be signed in to change notification settings - Fork 0
/
baby.html
88 lines (53 loc) · 1.88 KB
/
baby.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
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
<!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>baby segment</title>
<link rel="stylesheet" href="./baby.css">
<script src="https://kit.fontawesome.com/11ec43b564.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./footer/footer.css">
</head>
<body>
<div id="header"></div>
<div class="top-img">
<img class="big-img"
src="https://images.ctfassets.net/66mrrren2unf/5gFRTMpp5Y2ABnftnUsbp4/a1ccf6de76610c0b874372f8d66c91d2/Desktop.jpg?q=40"
alt="baby-img">
</div>
<h1 class="baby-care-heading">Baby Care Products</h1>
<h3 class="best-sel">BestSellers</h3>
<div id="container-1"> </div>
<h3 class="ourpro">Our Products</h3>
<div>
<ul id="list-item">
<li><a href="">ALL</a></li>
<li><a href="">DIAPER</a></li>
<li><a href="">SHAMPOO</a></li>
<li><a href="">LOTION</a></li>
<li><a href="">POWDER</a></li>
<li><a href="">BATH</a></li>
<li><a href="">ORAL CARE</a></li>
<li><a href="">SKIN</a></li>
</ul>
</div>
<div id="sort-filter">
<select name="sort" id="sortButton" onchange=" sortProducts()">
<option value="">Sort By</option>
<option value="high">High To Low</option>
<option value="low">Low To High</option>
</select>
</div>
<div id="container"></div>
<div id="container-2"></div>
<div id="footer"></div>
<script src="./baby.js"></script>
</body>
</html>
<script type="module">
import header from "./header.js"
import footer_body from "./footer/footer_components/footer_body.js";
document.getElementById("header").innerHTML = header()
document.getElementById("footer").innerHTML = footer_body();
</script>