26 lines
859 B
HTML
26 lines
859 B
HTML
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Веб-Чат</title>
|
||
<link rel="stylesheet" href="/assets/css/chat.css">
|
||
</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>
|
||
|
||
<script src="/assets/js/chat.js"></script>
|
||
</body>
|
||
</html>
|