-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.02 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
<!-- HTML - CSS - SASS - JS Revision
Author: Nguyen Truong Thinh
Contact me: [email protected] || +84393280504 -->
<!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>Modern Front-end Web Development</title>
<link rel="styleSheet" href="/assets/css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;0,800;1,300;1,500;1,700;1,800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<h1>Modern UI Web Development</h1>
</header>
<section include-html="./components/navbar.html"></section>
<section include-html="./components/main.html"></section>
<section include-html="./components/footer.html"></section>
<script type="text/javascript" src="/assets/js/script.js"></script>
<script>
includeHTML();
</script>
</body>
</html>