-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (36 loc) · 1.22 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
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sonnets</title>
<link rel="stylesheet" href="https://linfindel.github.io/nadircss/nadir.css">
<style>
@font-face {
font-family: 'Noto Serif';
src: url(NotoSerifVariable.ttf);
}
</style>
</head>
<body class="column">
<div class="navbar-column">
<nav>
<h1>Shakespearean Sonnets</h1>
</nav>
<button onclick="location.href = 'about.html'">
<span translate="no" class="material-symbols-rounded">info</span>
About
</button>
</div>
<div class="search-box">
<span translate="no" class="material-symbols-rounded">search</span>
<input oninput="search(this.value)" class="input-search outline-none" type="number" placeholder="Search for sonnets">
</div>
<div id="sonnet-container" class="toolbar" style="flex-direction: column; gap: 0; display: none;">
<h3 style="font-family: 'Noto Serif', serif;" id="sonnet-title"></h3>
<div id="sonnet-divider" class="toolbar-divider-horizontal"></div>
<p style="font-family: 'Noto Serif', serif;" id="sonnet"></p>
</div>
<script src="sonnets.js"></script>
</body>
</html>