first commit
This commit is contained in:
27
index.html
Normal file
27
index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>WebChat</title>
|
||||
<script src="assets/js/chat.js"></script>
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
<link rel="i"
|
||||
</head>
|
||||
<body onload="onload();">
|
||||
<header>
|
||||
<h2>WebChat</h2>
|
||||
<div>
|
||||
<h3 id="username" onclick="setUsername();"/>
|
||||
</div>
|
||||
</header>
|
||||
<audio id="notify" src="assets/mp3/notify.mp3" hidden></audio>
|
||||
<audio id="join" src="assets/wav/join.wav" hidden></audio>
|
||||
<div class="container">
|
||||
<div class="chatbox" id="chat-box">
|
||||
<p class="chattext">Connecting to server...</p>
|
||||
</div>
|
||||
<div id="chatstuff" class="chatstuff">
|
||||
<textarea rows="2" id="message" class="consolas" placeholder="Type your message..."></textarea>
|
||||
<button onclick="sendMessage();" class="consolas" id="sendbutton">Send</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user