Created
October 26, 2019 11:33
-
-
Save uF4No/5303f07fab1223690d353addcacdcdf7 to your computer and use it in GitHub Desktop.
socket.io chat client html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<!-- Loads socket.io client from server --> | |
<!-- <script src="/socket.io/socket.io.js"></script> --> | |
<!-- Loads socket.io client from CDN --> | |
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.slim.js"></script> | |
<!-- Script to emit/receive events from socket.io server --> | |
<script defer src="script.js"></script> | |
<!-- Stylesheet --> | |
<link rel="stylesheet" href="style.css"> | |
<title>Chat Socket.io Demo</title> | |
</head> | |
<body> | |
<div id="app"> | |
<h1 class="center">Chat demo</h1> | |
<div id="chat-container"> | |
</div> | |
<div class="center"> | |
<form id="messageForm"> | |
<input class="input" type="text" id="messageInput" size=70><button class="btn" type="submit" id="sendBtn">Send!</button> | |
</form> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment