-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
46 lines (41 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
40
41
42
43
44
45
46
<!DOCTYPE html>
<head>
<meta charset="utf-8" name="viewport" content="initial-scale=.4, user-scalable=no"></meta>
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet" type="text/css">
<title>Reedr</title>
<link rel="stylesheet" type="text/css" href="css/toast.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/reedr.js"></script>
</head>
<body>
<div class="container">
<div class="grid">
<div class="unit span-grid">
<h1>Reedr</h1>
</div>
</div>
</div>
<div class="white-bar">
<canvas id="canvas"></canvas>
</div>
<div class="container">
<div class="grid">
<div class="unit one-of-two" style="text-align: right">
<button id="btn1"
onclick="document.getElementById('image-sel').click()">
Upload
</button>
</div>
<div class="unit one-of-two" style="text-align: left">
<button id="btn2">Start</button>
</div>
<div class="unit span-grid" style="text-align: center">
<input class="wpm textput" type="number" id="wpm"
value="150" min="100" max="1500">
<span class="wpm2 cap">wpm</span>
</div>
</div>
</div>
<input class="upload" type="file" id="image-sel" accept="image/*">
</body>
</html>