-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1014 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Документ без названия</title>
<link rel="stylesheet" href="css/screen.css">
<script src="js/chat.js" charset="utf-8"></script>
</head>
<body>
<section class="wrapper">
<article class="form">
<form method="POST" name="message">
<input name="username" type="text" placeholder="Ваше имя" />
<input name="msg" type="text" placeholder="Ваше сообщение" />
<button>Сказать</button>
</form>
<span>255</span>
</article>
<article class="error">
</article>
<article class="chat">
<!--template of message-->
<div class="message">
<time></time>
<span class="username"></span>
<article class="text"></article>
</div>
<!--end template-->
</article>
</section>
</body>
</html>