-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 1.32 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
<!-- Learn more about Bonobo at https://github.com/Noodlebox1/Bonobo !-->
<html lang="en-US">
<head>
<link rel="stylesheet" href="assets/style.css">
<link href='https://fonts.googleapis.com/css?family=Roboto Mono' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bonobo - A simpler writing app</title>
<link rel="icon" type="image/x-icon" href="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fi.pinimg.com%2Foriginals%2Feb%2Fc5%2Fbe%2Febc5be6ada29f5035b9a5dbac1f0b599.jpg">
<meta charset="utf-8"/>
<meta name="description" content="A super simple, distraction free writing app. Just start typing!"/>
<meta http-equiv="X-Frame-Options" content="DENY">
</head>
<body>
<div class="controls">
<div class="spellcheckToggle"><a id="toggleLink" class="toggle-link" onclick="toggleSpellcheck()"><img src="assets/spellcheck_dark.svg" width="24" height=24 alt="Toggle spellcheck"></a>
<br>
<br>
<a id="downloadBtn"><img src="assets/download_dark.svg" width="24" height="24" alt="Download"></a>
</div>
</div>
<div class="wordCount"><span id="wordCount">0</span> words</div>
<textarea id="textArea" spellcheck="true" placeholder="Start writing..."></textarea>
</div>
<script src="assets/script.js"></script>
</body>
</html>