-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
42 lines (42 loc) · 1.65 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dunder Mipsum - About</title>
<meta name="description" content="A lorem ipsum generator that only uses lines from the tv show The Office, and an instant quote search.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="prefetch" href="dist/script.js" />
<link rel="prefetch" href="dist/search.js" />
<link rel="prefetch" href="dist/search-worker.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">Search Quotes</a>
<a href="about.html" class="current">About</a>
</nav>
</header>
<h2>About</h2>
<p>
This website has a lorem ipsum generator that only uses lines from
the tv show <a href="https://en.wikipedia.org/wiki/The_Office_(American_TV_series)" target="_blank" rel="noopener noreferrer">The Office</a>.
It also features a realtime quote search which provides instant results searching
through every single line said in the show.
</p>
<p>
It's perfect for the person who thinks in "The Office" quotes. Use it to generate dummy
content or find the quote you've been struggling to put a finger on.
</p>
<ul>
<li>
Lines provided by <a href="https://www.npmjs.com/package/the-office" target="_blank" rel="noopener noreferrer">the-office</a>
</li>
<li>
Improve this project on <a href="https://github.com/RyanBerliner/the-office-lorem-ipsum" target="_blank" rel="noopener noreferrer">GitHub</a>
</li>
</ul>
</body>
</html>