-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.13 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
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body class="bg-gray-100">
<div class="container">
<div class="main-container container">
<!-- Navigation Bar -->
<div id="navbar"></div>
<!--quote box-->
<div class="quote-container">
<div class="centered-quote">
<p id="quote-text"></p>
<p>
<span class="em-dash">—</span>
<span id="quote-author" class="author"></span>
<span id="quote-citation" class="citation"></span>
</p>
<button class="btn btn-primary" id="new-quote">New Quote</button>
</div>
</div>
</div>
</div>
</body>
<script type="module" src="js/header.js"></script>
<script type="module" src="js/nav.js"></script>
<script type="module" src="js/env.js"></script>
<script type="module" src="js/quote.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
loadHeader(); // load header
loadNav(); // load navigation
populateQuote(); // populate the quote box
});
</script>
</html>