-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (52 loc) · 2.05 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
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Write Things</title>
<meta name="description" content="write things, distraction-free">
<meta name="keywords" content="writing, distraction-free">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="main.js"></script>
</head>
<body>
<main>
<textarea tabindex="-1" placeholder="start writing..." spellcheck="false"></textarea>
<footer>
<div><!--
--><span id="WordCount">0 words</span><!--
--><span class="separator">·</span><!--
--><span id="CharacterCount">0 chars</span><!--
--><span class="separator">·</span><!--
--><span id="TimeToRead">Nothing to read</span><!--
--></div>
<div class="footerControls"><!--
--><span><!--
--><select id="fontSelector"><!--
--><optgroup label="Serif"><!--
--><option value="'Courier Prime', serif">Courier Prime</option><!--
--><option value="'Merriweather', serif">Merriweather</option><!--
--></optgroup><!--
--><optgroup label="Sans Serif"><!--
--><option value="'Atkinson Hyperlegible', sans-serif">Atkinson Hyperlegible</option><!--
--><option value="'Geologica', sans-serif">Geologica</option><!--
--></optgroup><!--
--><optgroup label="Monospace"><!--
--><option value="'Cousine', monospace" selected>Cousine</option><!--
--><option value="'Ubuntu Mono', monospace">Ubuntu Mono</option><!--
--></optgroup><!--
--></select><!--
--><input type="number" id="fontSize" name="fontSize" min="12" max="100" value="20"><!--
--><label for="fontSelector"> Font</label><!--
--></span><!--
--><span class="separator">·</span><!--
--><span><!--
--><input type="checkbox" id="EnableSpellCheck" name="EnableSpellCheck"><!--
--><label for="EnableSpellCheck"> Enable Spell Check</label><!--
--></span><!--
--></div>
</footer>
</main>
</body>
</html>