-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 990 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat_With_AKil</title>
<link rel="stylesheet" href="/style.css">
<link rel="icon" href="https://i.ibb.co/26HpbMh/pngwing-com.png">
</head>
<body>
<div class="main">
<div class="head">
<img src="https://i.ibb.co/26HpbMh/pngwing-com.png" width="50px" class="img">
<p class="tit">Wellcome To Chat_With_AKil</p>
</div>
<div class="msg-area">
<div class="ms">
</div>
<div class="text-area">
<textarea cols="50" class="txt" placeholder="Write Your Message Here.... Press Enter To send Msg" id="msg"></textarea>
</div>
</div>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="/client.js"></script>
</body>
</html>