-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.6 KB
/
Copy pathindex.html
File metadata and controls
44 lines (42 loc) · 1.6 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
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Chat Demo</title>
<link rel='stylesheet' href='css/style_white.css'>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:050,400,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,500,600" rel="stylesheet">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src='js/socket.io.js'></script>
<script src='js/jQueryRotate.js'></script>
<script src='js/main.js'></script>
<script src='js/chat.js'></script>
<script src='js/animate.js'></script>
</head>
<body>
<div class= 'userbox'>
<div class='greetingbox'>
</div>
<span class= 'title> text = 'Put your nickname here.' </span>
<span class = 'User-welcome'> Welcome to our chat app. </span>
<div class='Username'>
<span class= 'new_name'><input type = 'text' placeholder= 'Enter your Nickname..'></input></span>
</div>
</div>
<div class='container'>
<!--- <div class='chat'>
<div class='messages'>
</div>
<div class='message_controls'>
<span class='new_message'><input type='text' placeholder='Enter your message'><img src='img/send.svg' class='send_icon'></input></span>
</div>
<span class='status'> </span>
</div>
--->
</div>
</body>
</html>