16 lines
514 B
HTML
16 lines
514 B
HTML
<!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">
|
|
<title>Document</title>
|
|
<script defer src="index.js"></script></head>
|
|
<body>
|
|
<div id="motd"></div>
|
|
<div id="chat">
|
|
<div id="chat-messages"></div>
|
|
<input type="text" name="chat-input" id="chat-input" class="chat-input" placeholder="You can type here to chat.">
|
|
</div>
|
|
</body>
|
|
</html> |