-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 840 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<script src="index.js"></script>
</head>
<body>
<div>
<section class="hero is-primary">
<div class="hero-body">
<p class="title">
WebTransport Chat
</p>
</div>
</section>
<div class="columns">
<div class="column is-1">
<input class="input" type="text" id="name" placeholder="Your name">
</div>
<div class="column is-10">
<input class="input" type="text" id="message" placeholder="Message">
</div>
<div class="column is-1">
<button class="button is-link" id="send-button">Send</button>
</div>
</div>
<div id="messages">
</div>
</div>
</body>
</html>