forked from discordier/sam
-
Notifications
You must be signed in to change notification settings - Fork 1
/
guess.html
38 lines (36 loc) · 871 Bytes
/
guess.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>SAM: Software Automatic Mouth</title>
<style>
body {
max-width: 12cm;
margin: 0 auto;
font-family: sans-serif;
}
h1, h2 {
text-align: center;
}
label, input {
display: inline-block;
}
label { width: 30%}
input { width: 60%}
input[type="button"] { width: 100%;}
</style>
</head>
<body>
<h1> SAM Software Automatic Mouth</h1>
<script src="dist/guessnum.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
GuessNum(document.getElementById('playground'));
});
</script>
<h3>S.A.M. - guess a number.</h3>
<form id="playground"></form>
<hr>
<a href="https://github.com/discordier/sam">Github Repository with the source code</a>
</body>
</html>