17 lines
646 B
HTML
17 lines
646 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>Chat</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="chat">
|
|
<input type="text" id="chat-box" placeholder="You can chat with this thing.">
|
|
<input type="submit" value="Enter" id="chat-enter">
|
|
</div>
|
|
</body>
|
|
</html> |