-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgreeter-test.html
25 lines (25 loc) · 1.11 KB
/
greeter-test.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Greetings Code Camp</title>
<style type="text/css">
.voice { background-color: yellow; padding: 5px; display: none; margin: 10px 0px 10px 0px; }
.ear { background-color: yellow; padding: 5px; display: none; margin: 10px 0px 10px 0px; }
</style>
</head>
<body>
<div id="earBox" class="ear">
<form>
<span>What can I call you?</span>
<input id="input" type="text">
</form>
</div>
<div id="voiceBox" class="voice"></div>
<script type="text/javascript" src="vendor/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="lib/wisdom.js"></script>
<script type="text/javascript" src="lib/greeter.js"></script>
<script type="text/javascript" src="vendor/buster-test.js"></script>
<script type="text/javascript" src="test/greeter-test.js"></script>
</body>
</html>