-
Notifications
You must be signed in to change notification settings - Fork 2
/
makeup.html
31 lines (28 loc) · 1.01 KB
/
makeup.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
<!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">
<link rel="stylesheet" href="makeup.css">
<link rel="stylesheet" href="./footer.css">
<link rel="stylesheet" href="./navbar.css">
<script src="https://kit.fontawesome.com/777c85ebe0.js" crossorigin="anonymous"></script>
<script type="module">
import navbar from './componants/navbar.js'
document.getElementById("navbar").innerHTML = navbar();
import footer from './componants/footer.js'
document.getElementById("footer").innerHTML = footer();
</script>
<title>MAKEUP</title>
</head>
<body>
<div id="navbar"></div>
<h3 class="header">HOME / MAKEUP</h3>
<hr>
<h1 class="header1" style="text-decoration:underline 8px solid #FCADAD">MAKEUP</h1>
<div id="container"></div>
<div id="footer"></div>
</body>
</html>
<script src="makeup.js"></script>