-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (25 loc) · 941 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
<!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>Real Time Chat App </title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<section class="chat__section">
<div class="brand">
<img style="height: 50px;" src="/whatsapp--v1.png" alt="whatsapp image">
<h1> whatsapp </h1>
</div>
<div class="message_area"></div>
<div class="textarea">
<!-- <textarea id="textarea" cols="30" rows="1" placeholder="Write a message"></textarea> -->
<input type="text" id="textarea" cols="30" rows="1" placeholder="Write a message">
</div>
</section>
<script src="/socket.io/socket.io.js"></script>
<script src="/client.js"></script>
</body>
</html>