- Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 531 Bytes
/
index.html
File metadata and controls
23 lines (21 loc) · 531 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Builder.io Plain JS example</title>
<meta charset="UTF-8" />
</head>
<body>
<header>
<div class="logo">MY SITE</div>
<div class="links">
<a class="link" href="/">Home</a>
<a class="link" href="/about">About</a>
<a class="link" href="/page-1">Page 1</a>
<a class="link" href="/page-2">Page 2</a>
</div>
</header>
<main id="app"></main>
<footer></footer>
<script src="src/index.js"></script>
</body>
</html>