-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<title>wikitype</title>
<link rel="stylesheet" href="styles/stylesheet.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=JetBrains Mono">
</head>
<body>
<p class="timer" id="timer"></p>
<div class="container" id="container">
<div class="textbox" id="textbox"></div>
<input id="typebox" class="typebox" type="text" spellcheck="false" autofocus></input>
<button style="cursor: pointer;" id="restart-button" onclick="reset()">restart</button>
</div>
<div class="endcontainer" id="endcontainer">
<p class="textbox wpmbox" id="wpm"></p>
<p class="textbox wpmbox" id="accuracy"></p>
<button style="cursor: pointer;" id="restart-button" onclick="reset()">restart</button>
</div>
<button style="font-size: 16px;" type="checkbox" onclick="toggleQuoteMode()">toggle Quote Mode</button>
<div class="bottom-bar">
<div style="display: inline;">
<a href="wikitext/page.html">Artikel</a>
</div>
<div style="display: inline;">
<a href="wikitext/tips.html">Tipps</a>
</div>
<div style="display: inline;">
<a href="https://github.com/Fakecrafter/Fakecrafter.github.io">Github</a>
</div>
<div style="display: inline;">
<a href="wikitext/sources.html">Quellen</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>