-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-socket-client.html
More file actions
21 lines (20 loc) · 847 Bytes
/
web-socket-client.html
File metadata and controls
21 lines (20 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
</head>
<body class="bg-secondary">
<div class="d-flex flex-column align-items-center">
<h1 class="mt-4">Chat Client/Server</h1>
<br>
<form class="form-inline">
<input id="messageField" class="form-group mr-2" type="text">
<input onClick="sendMsg();" value="Send" type="button" class="btn btn-danger">
</form>
</div>
<div id="msg-box" class="text-white bg-dark container mt-4" style = "border-radius:20px;"></div>
<script src="javascript.js"></script>
</body>
</html>