-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 843 Bytes
/
index.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
<!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">
<link rel="shortcut icon" href="./logoChat.png" type="image/x-icon">
<title>Chhater</title>
<link rel="stylesheet" href="./css/style.css">
<script defer src="https://chat-app-node-js-dusky.vercel.app/socket.io/socket.io.js"></script>
<script defer src="./js/client.js"></script>
</head>
<body>
<nav>
<img src="./logoChat.png" alt="logo">
<h1>Welcome to Chhater</h1>
</nav>
<div class="container">
</div>
<form class="inp" id="send-con">
<input type="text" name="text" id="text">
<button type="submit" onclick="show()">Submit</button>
</form>
</body>
</html>