-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask1.html
More file actions
65 lines (65 loc) · 2.24 KB
/
task1.html
File metadata and controls
65 lines (65 loc) · 2.24 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Перше завдання</title>
</head>
<body>
<h1>Форма додавання викладача</h1>
<form>
<!-- введення імені -->
<div>
<label for="name">Повне ім'я:</label>
<input type="text" id="name" name="name">
</div>
<!-- вибір статі -->
<div>
<label>Стать:</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Жіноча</label>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Чоловіча</label>
</div>
<!-- дата народження -->
<div>
<label for="birthdate">Дата народження:</label>
<input type="date" id="birthdate" name="birthdate">
</div>
<!-- email -->
<div>
<label for="email">Email:</label>
<input type="email" id="email" name="email">
</div>
<!-- телефон -->
<div>
<label for="telephone">Телефон:</label>
<input type="tel" id="telephone" name="telephone">
</div>
<!-- бажаний колір фону -->
<div>
<label for="color">Колір фону:</label>
<input type="color" id="color" name="color">
</div>
<!-- країна -->
<div>
<label for="country">Країна:</label>
<input type="text" id="country" name="country">
</div>
<!-- місто -->
<div>
<label for="city">Місто:</label>
<input type="text" id="city" name="city">
</div>
<!-- коментар -->
<div>
<label for="comment">Коментар:</label>
<textarea id="comment" name="comment" rows="4" cols="50"></textarea>
</div>
<!-- кнопка надсилання -->
<div>
<button type="submit">Додати</button>
</div>
</form>
</body>
</html>