-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.3 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./static/css/style.css">
<script defer src="https://dkfkgl-3000.csb.app/socket.io/socket.io.js"></script>
<script defer src="static/js/client.js"></script>
<script src="https://kit.fontawesome.com/1711c5a99a.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/x-icon" href="./static/images/favicon.png">
<title>Nit Chat - Chat Anonymously</title>
</head>
<body>
<nav id="navbar">
<img class="logo" src="./static/images/logo.png" alt="">
<div class="logoname">
<h1>Nit Chat</h1>
<h6>Developed By <strong>Anas Altaf </strong>with<i class="fa fa-heart"></i></h6>
</div>
</nav>
<h1 id="sec-heading">Keep Chatting!</h1>
<div id="timeline"><i class="fas fa-wifi"></i>Current Time : 11:50 AM, 2 Feb, 2024</div>
<div class="container" id="containerid">
</div>
<form action="#" id="send-message-form">
<input type="text" name="messageinp" id="messageinp" placeholder="Write Your Message Here...">
<button class="btn"><i class="fa fa-paper-plane" aria-hidden="true"></i></button>
</form>
</body>
</html>