-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (26 loc) · 852 Bytes
/
index.html
File metadata and controls
36 lines (26 loc) · 852 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Your Title Here</title>
<!-- external resources -->
<!-- steal some base styles from chota: https://jenil.github.io/chota/ -->
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
<!-- customize in this file -->
<link rel="stylesheet" href="style.css">
<style>
</style>
</head>
<body>
<nav class="bg-primary">
<div class="nav-center">
<h1><a class="brand" href="#">Your Title Here</a></h1>
</div>
</nav>
<main id="project">
<section id="essay"></section>
<section id="cardcontainer"></section>
</main>
<script type="module" src="main.js"></script>
</body>
</html>