-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
45 lines (39 loc) · 1.43 KB
/
main.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>You-Chat</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<ul class="pages">
<li class="chat page">
<div class="chatArea">
<ul class="messages"></ul>
</div>
<input class="inputMessage" placeholder="Type here..."/>
</li>
<li class="login page">
<div class="form">
<div>
<h2><font color= "white" > YOU-CHAT</font></h2>
<h4><font color="white">Developed By - Ayush Shrivastav</font></h4>
</div>
<h3 class="title">Hey There! - What's your Nickname?</h3>
<form>
<input class="usernameInput" type="text" maxlength="14" />
<input type="submit" hidden="true" />
</form>
</div>
<div class= "kyd" >
<h4>Connect with the Dev:</h4>
<a href="https://www.github.com/AyushShri" target="_blank" > <img src="https://www.pinclipart.com/picdir/big/197-1979961_github-icon-vector-git-branch-icon-png-clipart.png" width="30" height="37" > </a>
<a href="https://www.linkedin.com/in/ayush-shrivastav" target="_blank" > <img src="https://image.flaticon.com/icons/png/512/61/61109.png" width="35" height="37" > </a>
</div>
</li>
</ul>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="/main.js"></script>
</body>
</html>