-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
27 lines (27 loc) · 1.12 KB
/
search.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dunder Mipsum - Instantly search every line in "The Office"</title>
<meta name="description" content="Instantly search every line said in the TV show The Office.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="prefetch" href="dist/script.js" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Dunder Mipsum</h1>
<nav>
<a href="index.html">Lorem Ipsum Generator</a>
<a href="search.html" class="current">Search Quotes</a>
<a href="about.html">About</a>
</nav>
</header>
<h2>Search Quotes</h2>
<p class="mt-0">Instantly search every line in <a href="https://en.wikipedia.org/wiki/The_Office_(American_TV_series)" target="_blank" rel="noopener noreferrer">The Office.</a></p>
<input type="search" placeholder="Search the entire series..." disabled aria-label="Search quotes, results instantly populated below this field" />
<ul id="results"></ul>
<div id="episode-explorer"></div>
<script async defer src="dist/search.js"></script>
</body>
</html>