File size: 614 Bytes
94c7dc3 03bf306 94c7dc3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<!DOCTYPE html>
<html>
<head>
<title>ScriptAI</title>
<link id="css" href="scriptai.css" rel="stylesheet">
</head>
<body>
<div id="backgroundthing">
<textarea id="output" readonly></textarea>
<input id="input" autocapitalize="none" placeholder="type a message" type="text" onchange="scriptAI()"/>
<button id="talkbutt" class="talking" onclick="talk()">
<img id="micbutt" style="height: 100%;" src="mic.png"/>
</button>
</div>
<script src="scriptai.js"></script>
</body>
</html> |