-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 900 Bytes
/
index.html
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
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chat App</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
<link rel="icon" href="/icon.png" type="image/png" />
</head>
<body>
<section class="Container">
<div class="logo">
<h1>Chat App</h1>
</div>
<div class="room-info">
<div class="Entry">Room Members</div>
<div class="join-message"></div>
</div>
<div class="Message_section"></div>
<div class="input-section">
<textarea
type="text"
class="inp"
placeholder="Write a message"
id="inpMssg"
></textarea>
</div>
</section>
<script src="/socket.io/socket.io.js"></script>
<script src="/user.js"></script>
</body>
</html>