shift/index.html

24 lines
555 B
HTML

<html>
<head>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<!-- TODO: conversations -->
<h1>Hester Gomez</h1>
<p class="delay">(Luna, <span id="delay-text"></span>)</p>
<!-- messages from current conversations -->
<ul id="messages"></ul>
<!-- message box displays the next message to send -->
<div id="textbox">
<input id="textbox-input" class="rounded-rectangle" type="text" disabled></input>
<button class="rounded-rectangle" onclick="pressSendButton()">send</button>
</div>
<script src="main.js"></script>
</body>
</html>