-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable7.html
70 lines (54 loc) · 1.55 KB
/
table7.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table 7</title>
</head>
<body>
<br>
<center>
<h2>
<a href="index.html">Table 1</a>
<a href="table2.html">Table 2</a>
<a href="table3.html">Table 3</a>
<a href="table4.html">Table 4</a>
<a href="table5.html">Table 5</a>
<a href="table6.html">Table 6</a>
<a href="table7.html">Table 7</a>
<a href="table8.html">Table 8</a>
</h2>
<br>
<h1>Table 7</h1>
<table border="1" width="500">
<tr>
<td colspan="2">Person</td>
<td colspan="2">Department</td>
</tr>
<tr>
<td>Name</td>
<td rowspan="4">Photo</td>
<td>Name</td>
<td rowspan="2"> Image</td>
</tr>
<tr>
<td>Surname</td>
<td>Structure</td>
</tr>
<tr>
<td>State</td>
<td>Floor</td>
<td rowspan="2">QR Code</td>
</tr>
<tr>
<td>City</td>
<td>Room</td>
</tr>
<tr>
<td colspan="2"> E-mail</td>
<td colspan="2"> Tel. Number</td>
</tr>
</table>
</center>
</body>
</html>