-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (32 loc) · 1.11 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
<!doctype html>
<html>
<head>
<title>Typing Signature</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section id="user1">
<img src="img/1.png">
<textarea placeholder="Type "hello gdg" and press enter" autofocus></textarea>
<p>Not trained</p>
</section>
<section id="user2">
<img src="img/2.png">
<textarea placeholder="Type "hello gdg" and press enter" disabled="true"></textarea>
<p>Not trained</p>
</section>
<section id="user3">
<img src="img/3.png">
<textarea placeholder="Type "hello gdg" and press enter" disabled="true"></textarea>
<p>Not trained</p>
</section>
<section id="userx">
<img src="img/x.png">
<textarea placeholder="Type "hello gdg" and press enter" disabled="true"></textarea>
<p>Test case</p>
</section>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/brain-0.6.3.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>