2024-08-06 07:52:29 +00:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ru">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Веб-Чат</title>
|
2024-08-06 09:00:46 +00:00
|
|
|
|
<link rel="stylesheet" href="assets/css/chat.css">
|
2024-08-06 07:52:29 +00:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="chat-container">
|
|
|
|
|
<div class="chat-header">
|
|
|
|
|
Веб чат
|
|
|
|
|
</div>
|
|
|
|
|
<div class="chat-messages" id="chat-messages">
|
|
|
|
|
<!-- Сообщения чата будут здесь -->
|
|
|
|
|
</div>
|
|
|
|
|
<div class="chat-footer">
|
|
|
|
|
<input type="text" class="chat-input" id="chat-input" placeholder="Введите сообщение...">
|
|
|
|
|
<button class="chat-send-button" onclick="sendMessage()">Отправить</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-08-06 09:00:46 +00:00
|
|
|
|
<script src="assets/js/chat.js"></script>
|
2024-08-06 07:52:29 +00:00
|
|
|
|
</body>
|
2024-08-06 09:00:46 +00:00
|
|
|
|
</html>
|