-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 840 Bytes
/
index.html
File metadata and controls
31 lines (31 loc) · 840 Bytes
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
<html>
<head>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="top">
<div class="top-border">
<div class="vert-bar"></div>
</div>
<pre style="font-size: 40px;" id="word"></pre>
<div class="bottom-border">
<div class="vert-bar"></div>
</div>
</section>
<section class="bottom">
<button id="dec-wpm">
<img class="icon" src="decr.svg"/>
</button>
<button id="control" data-initial="true">
<img class="icon" src="play.svg"/>
</button>
<button id="inc-wpm">
<img class="icon-small" src="incr.svg"/>
</button>
<div id="wpm"></div>
</section>
<script src="mercury.web.js"></script>
<script src="index.js"></script>
</body>
</html>