-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask1.html
More file actions
54 lines (41 loc) · 2.03 KB
/
Task1.html
File metadata and controls
54 lines (41 loc) · 2.03 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
<!DOCTYPE html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="author" content="Анастасія">
<title>Форма додавання викладача</title>
</head>
<body>
<form>
<!-- Повне ім’я, стать, дата народження, email, телефон, бажаний колір фону, країна, місто, коментар.-->
<h1>Форма додавання викладача</h1>
<label for="fullname">ПІБ:</label>
<input type="text" id="fullname" name="fullname" placeholder="Введіть ПІБ"><br>
<label for="gender">Оберіть стать:</label>
<select name="gender" id="gender">
<option value="women">жінка</option>
<option value="man">чоловік</option>
<option value="other">інше</option>
</select><br>
<label for="birthday">Дата народження:</label>
<input type="date" id="birthday" name="birthday" placeholder="Введіть дату"><br>
<label for="email">Електронна пошта:</label>
<input type="email" id="email" name="email" placeholder="Введіть пошту"><br>
<label for="phone">Номер телефону:</label>
<input type="tel" id="phone" name="phone" placeholder="Введіть номер телефону" pattern="\+380\d{9}"><br>
<label for="color">Бажаний колір фону:</label>
<input type="color" id="color" name="color"><br>
<label for="country">Країна:</label>
<select id="country" name="country">
<option value="ukraine">Україна</option>
<option value="poland">Польща</option>
<option value="germany">Німеччина</option>
</select><br>
<label for="city">Місто:</label>
<input type="text" id="city" name="city" placeholder="Введіть місто"><br>
<label for="comment">Коментар:</label><br>
<textarea id="comment" name="comment" rows="4" cols="30" placeholder="Коментар..."></textarea><br>
<button type="submit">Надіслати</button>
</form>
</body>
</html>