forked from netology-code/bhj-homeworks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.html
More file actions
49 lines (49 loc) · 2.01 KB
/
Copy pathtask.html
File metadata and controls
49 lines (49 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Текстовый чат</title>
<link rel="stylesheet" href="task.css">
<link rel="stylesheet" href="../../assets/css/style.css">
</head>
<body>
<header class="header">
<div class="logo__container">
<a href="https://netology.ru/" class="logo__link"></a>
</div>
<h1 class="header__title">
Домашнее задание к занятию 2.2 «Работа с HTML-формами». Текстовый чат.
</h1>
</header>
<div class="chat-widget">
<div class="chat-widget__area">
<div class="chat-widget__messages-container">
<div class="chat-widget__messages" id="chat-widget__messages">
<!--
Сообщение от робота
<div class="message">
<div class="message__time">22:10</div>
<div class="message__text">Добрый день!</div>
</div>
Сообщение от клиента
<div class="message message_client">
<div class="message__time">22:10</div>
<div class="message__text">Добрый день!</div>
</div>
-->
</div>
</div>
<input id="chat-widget__input" class="chat-widget__input" placeholder="Введите ваше сообщение">
</div>
<div class="chat-widget__side">
<div class="chat-widget__side-text">
Напишите нам, мы онлайн!
</div>
</div>
</div>
<script src="task.js"></script>
</body>
</html>