-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrying.html
More file actions
80 lines (73 loc) · 2.09 KB
/
trying.html
File metadata and controls
80 lines (73 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table</title>
</head>
<body>
<table border="1" cellspacing="3" cellpadding="3">
<th rowspan="2">Department</th>
<th rowspan="2">Employee name </th>
<th colspan="2">Contact Information</th>
<th rowspan="2">Position</th>
<th rowspan="2">Salary</th>
<tr >
<th>Email</th>
<th>Phone</th>
</tr>
<tr>
<td rowspan="3">IT</td>
<td>John Doe</td>
<td>john@example.com</td>
<td>+123456789</td>
<td>Software Engineer</td>
<td>$80.000</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>jane@example.com</td>
<td>+987654321</td>
<td>System Analyst</td>
<td>$75.000</td>
</tr>
<tr>
<td>Michael Brown</td>
<td>michael@example.com</td>
<td>+112233445</td>
<td>Network Administrator</td>
<td>$70.000</td>
</tr>
<tr>
<td rowspan="2">HR</td>
<td>Emily Davis</td>
<td>emily@example.com</td>
<td>+998877665</td>
<td>HR Manager</td>
<td>$85.000</td>
</tr>
<tr>
<td>Robert Wilson</td>
<td>robert@example.com</td>
<td>+554433221</td>
<td>Recruiter</td>
<td>$60.000</td>
</tr>
<tr>
<td rowspan="2">Finance</td>
<td>Sarah Lee</td>
<td>sarah@example.com</td>
<td>+667788990</td>
<td>Accountant</td>
<td>$78.000</td>
</tr>
<tr>
<td>David Miller</td>
<td>david@example.com</td>
<td>+223344556</td>
<td>Financial Analyst</td>
<td>$82.000</td>
</tr>
</table>
</body>
</html>