forked from urfu-2018/markup-task-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.39 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.39 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Задача «Подписка на бложик»</title>
</head>
<body>
<h1>Хочу подписаться!</h1>
<p>После вашего согласия на подписку вам будут приходить уведомления на почту и телефон</p>
<form>
<table>
<tbody>
<tr>
<td>Ваше имя</td>
<td>
<input type="text" placeholder="Имя">
</td>
</tr>
<tr>
<td>Email</td>
<td>
<input type="text" placeholder="email@yandex.ru">
</td>
</tr>
<tr>
<td>Телефон</td>
<td>
<input type="text" placeholder="89990007766">
</td>
</tr>
</tbody>
</table>
<p>Хочу получать уведомления:</p>
<input type="checkbox" id="checkbox1"><label for="checkbox1">на почту</label><br>
<input type="checkbox" id="checkbox2"><label for="checkbox2">на телефон</label><br><br>
<input type="submit" value="Подписаться">
</form>
</body>
</html>