shift/index.html

26 lines
600 B
HTML
Raw Normal View History

2024-07-17 00:21:57 +01:00
<!doctype html>
2024-07-08 00:00:09 +01:00
<html>
<head>
<link rel="stylesheet" href="styles.css"/>
2024-07-12 00:39:01 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-07-08 00:00:09 +01:00
</head>
<body>
2024-07-09 21:51:28 +01:00
<div id="header">
<h1>Hester Gomez</h1>
<p class="delay">(Earth, <span id="delay-text"></span>)</p>
2024-07-09 21:51:28 +01:00
</div>
2024-07-08 00:00:09 +01:00
<ul id="messages"></ul>
2024-07-09 21:51:28 +01:00
<p id="typing-indicator">Hester is typing...</p>
<div id="textbox">
<input id="textbox-input" class="rounded-rectangle" type="text" disabled></input>
<button class="rounded-rectangle" onclick="pressSendButton()">send</button>
</div>
2024-07-08 00:00:09 +01:00
<script src="main.js"></script>
</body>
</html>