-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.83 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.83 KB
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
<!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>iChat-Realtime Node Socket,io Chat App</title>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital@1&display=swap" rel="stylesheet">
</head>
<body>
<nav class="nav-bar">
<img class="logo" src="logo1.png" alt="">
<h2 style="color: #007eff;">iDiscuss chatBox</h2>
</nav>
<div class="container">
</div>
<div class="send">
<form action="#" id="send-container">
<input type="text" name="message-input" id="message-input" placeholder="Type Your Message">
<button class="btn" type="submit">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" t="1569683742680"
viewBox="0 0 1024 1024" version="1.1" pId="14019" height="2.5em" width="2.5em"
xmlns="http://www.w3.org/2000/svg">
<defs></defs>
<path
d="M931.4 498.9L94.9 79.5c-3.4-1.7-7.3-2.1-11-1.2-8.5 2.1-13.8 10.7-11.7 19.3l86.2 352.2c1.3 5.3 5.2 9.6 10.4 11.3l147.7 50.7-147.6 50.7c-5.2 1.8-9.1 6-10.3 11.3L72.2 926.5c-0.9 3.7-0.5 7.6 1.2 10.9 3.9 7.9 13.5 11.1 21.5 7.2l836.5-417c3.1-1.5 5.6-4.1 7.2-7.1 3.9-8 0.7-17.6-7.2-21.6zM170.8 826.3l50.3-205.6 295.2-101.3c2.3-0.8 4.2-2.6 5-5 1.4-4.2-0.8-8.7-5-10.2L221.1 403 171 198.2l628 314.9-628.2 313.2z"
pId="14020"></path>
</svg>
</button>
</form>
</div>
</body>
<script src="http://localhost:8000/socket.io/socket.io.js"></script>
<script src="js/client.js"></script>
</html>