Update chatroom.HTML

This commit is contained in:
Dangrainage 2023-08-28 18:54:49 +02:00 committed by GitHub
parent 2c281b7059
commit 94ef0686c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,23 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatroom</title>
<style>
/* Your CSS styles here */
body {
font-family: Arial, sans-serif;
}
#chatbox {
width: 400px;
height: 300px;
border: 1px solid #ccc;
padding: 10px;
overflow: auto;
}
#message {
width: 100%;
padding: 5px;
}
#send {
margin-top: 5px;
}
</style>
</head>
<body>