-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask3.html
41 lines (40 loc) · 1.21 KB
/
task3.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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="eu">
<head>
<meta charset="utf-8">
<title>Курсы</title>
</head>
<body>
<h2>Запись на курсы</h2>
<hr>
<form method="post">
<p> Имя:
<br><input type="text" name="name" placeholder="Введите ваше имя">
</p>
<p> Язык програмирования:<br>
<input id="first1" type="radio" name="programmingLanguage" value="C++">
<label for="first1">
C++
</label><br>
<input id="first2" type="radio" name="programmingLanguage" value="PHP">
<label for="first2">
PHP
</label><br>
<input id="first3" type="radio" name="programmingLanguage" value="Python">
<label for="first3">
Python
</label><br>
</p>
<p>Дополнительная информация:<br>
<textarea name="comment" placeholder="Введите информацию" cols="40" rows="3"></textarea><br>
</p>
<p>Cекретное слово:<br>
<input type="password" name="secretWord" placeholder="Введите секретное слово">
</p>
<input type="submit" name="submit" value="Отправить">
<input type="reset" name="reset" value="Очистить">
</form>
<hr>
</body>
</html>
<!--02.09.2017 Oleg Dubrovsky-->