-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.52 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VR chat - Realtime Node Socket.io chat App</title>
<script defer src="http://localhost:8000/socket.io/socket.io.js"></script>
<script defer src="js/client.js"></script>
<!-- <script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="js/emojionearea.min.js"></script> -->
<!-- <link rel="stylesheet" href="css/emojionearea.min.css"> -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<img class="logo" src="chat.png" alt="" srcset="">
<h3>Welcome to VR Chat App</h3>
</nav>
<div class="container">
<!-- <div class="message right">Rahul: Hey, How are you?</div>
<div class="message left">Akash: Bhai I am fine. How about you</div> -->
</div>
<div class="send">
<form action="" class="send-container" id="send-container">
<input type="text" name="messageInp" class="messageInp" id="messageInp">
<button class="btn" type="submit" class="btn btn-success"><img src="send3.png" alt="" srcset=""
class="img"></button>
</form>
</div>
<!-- <script>
$(document).ready(function(){
$("#messageInp").emojioneArea({
pickerPosition:"top"
});
})
</script> -->
</body>
</html>