You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
830 B
HTML

<!doctype html>
<!--
Based on the tutorial
https://medium.com/@awesammcoder/javascript-tutorial-simple-chatai-using-rivescript-js-4f0291e298f1
https://www.rivescript.com/docs/tutorial
Thank you!
-->
<html lang="en">
<head>
<meta charset="utf-8">
<title>XPUB - The Smart Speaker Theatre</title>
<meta name="description" content="XPUB">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="chat">
<div class="messages"></div>
<div id="edge"></div>
<form class="actions">
<input type="text" placeholder="Hi Saint, please tell about...">
<button type="submit">Send</button>
</form>
</div>
<script src="./rivescript.min.js"></script>
<script src="./script.js"></script>
</body>
</html>