-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (29 loc) · 1.06 KB
/
index.html
File metadata and controls
36 lines (29 loc) · 1.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jargon</title>
<link href='https://fonts.googleapis.com/css?family=Noto+Serif:400,700' rel='stylesheet' type='text/css'>
<link href="./jargon.css" rel="stylesheet">
<link href="./bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="./sticky-footer.css" rel="stylesheet">
</head>
<body id="jargon" class>
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1 id="word"></h1>
</div>
<p id="def" class="lead"></p>
</div>
<footer class="footer">
<div class="container">
<p class="text-muted">a project by <a href="http://kane.pizza">kane</a> - <button class="btn-toggle">Toggle Dark Mode 🌚</button></p>
</div>
</footer>
</body>
<script src="./dark.js"></script>
<script src="./papaparse.js"></script>
<script src="./jargon.js"></script>
</html>