-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dunder Mipsum - "The Office" themed lorem ipsum</title>
<meta name="description" content="A lorem ipsum generator that only uses lines from the tv show The Office.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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" class="current">Lorem Ipsum Generator</a>
<a href="search.html">Search Quotes</a>
<a href="about.html">About</a>
</nav>
</header>
<form>
<label>Paragraph Count
<input type="number" value="5" min="1" max="100" name="paragraphs" required />
</label>
<label>Paragraph Size
<input type="number" value="3" min="1" max="100" name="linesPer" required />
</label>
<button disabled>Generate</button>
</form>
<div id="output">
<p>Click "Generate" above to output lorem ipsum...</p>
</div>
</ul>
<script async defer src="dist/script.js"></script>
</body>
</html>