-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.6 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sChat - Realtime Chats</title>
<!-- <script defer src="http://localhost:8000/socket.io/socket.io.js"></script> -->
<!-- <script defer src="js/client.js"></script> -->
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io\apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io\favicon-16x16.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io\favicon-32x32.png">
<!-- <link rel="manifest" href="/site.webmanifest"> -->
</head>
<body>
<nav>
<h1><img src="chat.png" alt="Logo" class="logo">Chat Clone</h1>
</nav>
<div class="container">
<!-- <div class="userjoined">
Your name: Swanand
</div>
<div class="message msgright">
Swanand: How are you?
</div>
<div class="message msgright">
Swanand: How are you?
</div>
<div class="message msgcenter">
Mohan left the chat
</div>
<div class="message msgleft">
Rohan: I am fine!!
</div> -->
</div>
<div class="send">
<form action="#" id="send-form-m">
<input type="text" name="message" id="messageinp">
<input type="submit" class="btn"></button>
</form>
</div>
<script src="http://localhost:8000/socket.io/socket.io.js"></script>
<script src="client.js"></script>
</body>
</html>