-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
26 lines (25 loc) · 771 Bytes
/
Index.html
File metadata and controls
26 lines (25 loc) · 771 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Chat App</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<header>Our New Chat App</header>
<form action="#" id="login">
<input type="text" value="username">
<input type="password" value="password">
<input type="url" value="https://your-image.com">
<input type="submit" value="Submit">
</form>
<div id="emitter"></div>
<script src="node_modules/socket.io-client/dist/socket.io.js"></script>
<script>
// const socket = io('http://localhost');
</script>
<script src="websocket.js" ></script>
</body>
</html>