-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment1.html
More file actions
145 lines (144 loc) · 4.44 KB
/
Assignment1.html
File metadata and controls
145 lines (144 loc) · 4.44 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<html>
<head>
<style>
body{
text-align: center;
display:flex;
justify-content: center;
}
table,th,td{
text-align: left;
border: 1px solid rgb(5, 225, 245);
border-collapse: collapse;
height: 20px;
width: fit-content;
padding: 5px;
}
caption{
border: 1px solid black;
padding: 20px;
font-size: 24px;
}
</style>
</head>
<body>
<table>
<caption><b>Employee Registration form</b></caption>
<tr>
<th>Name</th>
<td></td>
<th>Gender</th>
<td></td>
<th>Date of Birth</th>
<td></td>
<td rowspan="4" style="text-align: center;">Photo</td>
</tr>
<tr>
<th>Birthplace</th>
<td ></td>
<th>Political status</th>
<td></td>
<th>Matital status</th>
<td></td>
</tr>
<tr>
<th>Education</th>
<td></td>
<th>Major</th>
<td></td>
<th>Job tilte</th>
<td></td>
</tr>
<tr>
<th>Height</th>
<td></td>
<th>ID Number</th>
<td colspan="3"></td>
</tr>
<tr>
<th>Graduated School</th>
<td colspan="3"></td>
<th>Gradution Time</th>
<td colspan="2"></td>
</tr>
<tr>
<th>Contact Number</th>
<td colspan="6"></td>
</tr>
<tr>
<th colspan="2">Address</th>
<td colspan="5"></td>
</tr>
<tr>
<th>Emergency contact number</th>
<th>Name</th>
<td></td>
<th>Relationship</th>
<td></td>
<th>Tel</th>
<td></td>
</tr>
<tr>
<th>Telephone Number</th>
<td colspan="6"></td>
</tr>
<tr>
<th rowspan="4">Skills</th>
</tr>
<tr>
<th>Language skills</th>
<td></td>
<th colspan="3">Driving Licence</th>
<th>Computer skills</th>
</tr>
<tr>
<th>Other language</th>
<td></td>
<th colspan="3">Type:
<input type="radio" Name="A">A
<input type="radio" Name="A">B
<input type="radio" Name="A">C
<input type="radio" Name="A">D
</th>
<td rowspan="2"></td>
</tr>
<tr>
<th>Skills level</th>
<td></td>
<th>Date of initial Certification</th>
<td></td>
</tr>
<tr>
<th>Other Skills</th>
<td colspan="6"></td>
</tr>
<tr>
<th rowspan="5">Family number</th>
</tr>
<tr>
<th>Name</th>
<th>Relationship</th>
<th colspan="2">Unit of Position</th>
<th>Contact Number</th>
</tr>
<tr>
<td></td>
<td></td>
<td colspan="2"></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td colspan="2"></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td colspan="2"></td>
<td></td>
</tr>
</table>
</body>
</html>