forked from luukbrauckmann/look-and-feel-living-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.12 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
32
33
34
35
36
37
<!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" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Coding the Curbs</title>
<link rel="stylesheet" href="style.css" />
<link id="component-styles" rel="stylesheet" />
<script src="./scripts/index.js"></script>
<script type="module" src="./scripts/menu.js"></script>
<script type="module" src="./scripts/router.js"></script>
<script id="component-script"></script>
</head>
<body>
<header id="root-header">
<button class="white-btn" onclick="toggleMenu()"><i class="fa fa-bars"></i> MENU</button>
<a href="#home">
<img src="./assets/CTC_Secondary_Logo_White.png" height="31">
</a>
<button style="visibility: hidden;">MENU</button>
</header>
<main id="root-main">
<nav id="main-nav">
<div id="main-nav-items"></div>
</nav>
<div id="main-content"></div>
</main>
</body>
</html>