-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (25 loc) · 850 Bytes
/
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
<!--My Talking Ron by John Spahr-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Talking Ron</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="ron2.js"></script>
</head>
<body>
<main>
<h1>My Talking Ron</h1>
<p id="transcriptTxt">your talking skeleton pal</p>
<img width="100" id="ronImg" src="ron.png">
<hr>
<input type="button" style="font-size: 24px;" id="talkBtn" onclick="listen()" value="Talk to Ron!" />
<hr>
<a href="#" onclick="help()">Not Working?</a>
<p><b>Warning: </b>Your browser may send speech input to be processed elsewhere!</p>
<hr>
<a href="#" onclick="about()">About</a>
</main>
</body>
</html>