-
Notifications
You must be signed in to change notification settings - Fork 0
/
hair.html
65 lines (43 loc) · 1.44 KB
/
hair.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
<!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>Document</title>
<link rel="stylesheet" href="./hair.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>
<img class="big-img" src="https://images.ctfassets.net/66mrrren2unf/2Dt0h7FbdNUqWcQDy5IBSa/378a2256530ea153e89c4af9b38a8661/desktop_with_CTA.jpg?q=40" alt="">
</div>
<h3 class="skin-head">Skin Care Products</h3>
<h3 class="best-head">Best Sellers</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="container">
</div>
<div id="footer">
</div>
<script src="./hair.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>