<!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>