-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkbot.html
54 lines (36 loc) · 1015 Bytes
/
checkbot.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
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<!-- My own scripts -->
<link rel="stylesheet" href="styles/checkbot.css" />
<script src="scripts/checkbot.js"></script>
<title>Check Bot</title>
</head>
<body>
<br />
<div class="centered-items">
<button class="reset-button">Reset</button>
<br />
<br />
<div class="form">
<span>></span><input type="text" class="enter-form" autofocus>
</div>
<br />
<div class="grid-wrapper">
<div>
<!-- Spacer div -->
</div>
<div class="to-dos">
</div>
<div>
<!-- Spacer div -->
</div>
</div>
</div>
</body>
</html>