forked from AbhinavRajputEXE/Web-Chat-Application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.62 KB
/
index.html
File metadata and controls
44 lines (42 loc) · 1.62 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anonymous</title>
<script defer src="http://localhost:8000/socket.io/socket.io.js"></script>
<script defer src="js/client.js"></script>
<script src="https://kit.fontawesome.com/da4c88c6a6.js" crossorigin="anonymous"></script>
<link rel="icon" href="https://img.icons8.com/officel/16/000000/anonymous-mask.png" >
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- <video autoplay muted loop id="myVideo">
<source src="images/bg.mp4" type="video/mp4">
</video> -->
<div class="background">
<div class="cube"></div>
<div class="cube"></div>
<div class="cube"></div>
<div class="cube"></div>
<div class="cube"></div>
<nav>
<img class="logo" src="images/chat.png" alt="" srcset="">
<!-- <h1 class="neonText">Anonymous Chat</h1> -->
<div id="glitch" title="Anonymous Chat">Anonymous Chat</div>
</nav>
<div class="container">
<!-- <div class="message right"></div>
<div class="message left"></div>
<div class="message center"></div> -->
</div>
<div class="send">
<form action="#" id="send-container">
<input type="text" name="messageInp" id="messageInp" placeholder="Enter message">
<button class="btn" type="submit"><i class="fa fa-angle-double-right"></i></button>
</form>
</div>
</div>
</body>
</html>