Update chatroom.HTML
This commit is contained in:
parent
2c281b7059
commit
94ef0686c8
1 changed files with 17 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue