-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask3.html
More file actions
97 lines (97 loc) · 2.67 KB
/
task3.html
File metadata and controls
97 lines (97 loc) · 2.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Table</title>
<link rel="stylesheet" href="../les3-home_work/style1.css" />
</head>
<style>
h3 {
margin: 0;
padding: 10px 20px;
background-color: lemonchiffon;
border-bottom: 5px solid grey;
font-family: serif;
display: inline-table;
}
.b1 {
border: 1px solid gray;
padding: 5px;
display: inline-table;
}
</style>
<center>
<nav>
<h3>
<a href="../les3-home_work/task1.html">Семантические теги</a>|
<a href="../les3-home_work/task2.html">Таблица</a>|
<a href="../les3-home_work/task3.html">Формы</a>|
<a href="../les3-home_work/task4.html">Списки</a>|
</h3>
</nav>
</center>
<form name="test" method="post">
<p>
<b>Name</b><br />
<input type="text" size="30" />
</p>
<p>
<b>Email</b><br />
<input type="email" />
</p>
<p>
<b>Sex</b><br />
<input type="radio" />Male <input type="radio" />Female
</p>
<p>
<b>Current status</b>
<br />
<input type="checkbox" /> Student<br />
<input type="checkbox" /> Employed<br />
<input type="checkbox" /> Unemployed<br />
</p>
<p>
<b>Month and Year of birth</b><br />
<select name="Month">
<option>January</option>
<option>February</option>
<option>March</option>
<option>April</option>
<option>May</option>
</select>
<input
type="number"
placeholder="year"
name="year"
min="1981"
max="2011"
/>
</p>
<b>Skill and Technologies</b><br />
<p class="b1">
<b>Tech skills</b><br />
<input type="checkbox" name="HTML" />HTML<br />
<input type="checkbox" name="Java" />CSS<br />
<input type="checkbox" name="JavaScript" /> JavaScript<br />
<input type="checkbox" name="git" />git<br />
<b>Soft skills</b><br />
<input type="checkbox" name="TM" /> Time management<br />
<input type="checkbox" name="Proactivity" /> Proactivity<br />
<input type="checkbox" name="Teamwork" />Teamwork<br />
<input type="checkbox" name="Leadership" />Leadership<br />
</p>
<p>
<b>Photo</b><br />
<input type="file" value="choose file" />
</p>
<p>
<b>Comments</b><br />
<textarea rows="8" cols="40" name="text"></textarea>
</p>
<p>
<input type="submit" value="save" />
</p>
</form>
</html>