-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path31_nested_tables.html
More file actions
62 lines (60 loc) · 1.33 KB
/
31_nested_tables.html
File metadata and controls
62 lines (60 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Qn.31 Nested Tables</title>
</head>
<body>
<table border="1" width="100%" cellpadding="5" cellspacing="0">
<tr>
<th>
<img src="../class_codes/pic2.png" alt="ABC Company Logo" />
</th>
<th>ABC Company</th>
</tr>
<tr>
<td>
<table border="1" width="90%" cellpadding="5" cellspacing="0" align="center" style="margin-top: 10px;"
<tr>
<td><a href="#">Home</a></td>
</tr>
<tr>
<td><a href="#">About Us</a></td>
</tr>
<tr>
<td><a href="#">Contact Us</a></td>
</tr>
</table>
</td>
<td>
<table border="1" width="90%" cellpadding="5" cellspacing="0">
<tr>
<td>Content 1</td>
<td>News 1</td>
</tr>
<tr>
<td>Content 2</td>
<td>News 2</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>Copyright</td>
<td>
<table border="1" width="100%" cellpadding="5" cellspacing="0">
<tr>
<td>
<a href="#">Facebook</a>, <a href="#">Twitter</a>
</td>
<td>
Powered By
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>