-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatboard.html
More file actions
36 lines (35 loc) · 865 Bytes
/
Copy pathchatboard.html
File metadata and controls
36 lines (35 loc) · 865 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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<title>PyChat</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="left">
<div id="talking-to"></div>
<div id="chat-container">
<ul id="messages-list">
<!-- Append messages here -->
</ul>
</div>
<div id="typing-container">
<div id="typing-div">
<textarea id="typing"></textarea><br>
</div>
<div id="send-div">
<button id="sendbtt">Send</button>
</div>
</div>
</div>
<div id="right">
<div id="my-profile">
<div id="my-photo">
<img src="img/1.jpg" alt="profile-photo">
</div>
<div id="my-name">My name</div>
</div>
<div id="userlist"></div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>