-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtablecell.html
62 lines (58 loc) · 1.79 KB
/
tablecell.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="tablecell.css">
</head>
<body>
<h1>CSS Assignment</h1>
<table width="100%" height="100px">
<tr>
<td id="navigation">
<nav>
|+| <a href="#">Home</a> |+|
<a href="#">Dashboard</a> |+|
<a href="#">About US</a> |+|
</nav>
</td>
</tr>
</table>
<table width="100%" height="400px">
<tr>
<td rowspan="4" id="left_section">
<ul>
Courses we Offer:
<li>Java Full Stack</li>
<li>Python Full Stack</li>
<li>MEAN MERN Full Stack</li>
<li>Diploma in Software Testing</li>
</ul>
</td>
<td>Cell 1</td>
<td rowspan="4">Cell 4</td>
<td>Cell 5</td>
<td>Cell 8</td>
<td rowspan="4" id="right_section">
<ul>
Connect with us:
<li>WhatsApp</li>
<li>Telegram</li>
</ul>
</td>
</tr>
<tr>
<td>Cell 2</td>
<td colspan="2">Cell 6</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 7</td>
<td>Cell 9</td>
</tr>
</table>
<table width="100%" height="100px">
<tr>
<td id="footer_info">Copyrights - FirstBit Solution Pvt. Ltd. 2022</td>
</tr>
</table>
</body>
</html>