-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.html
More file actions
39 lines (39 loc) · 1.15 KB
/
learn.html
File metadata and controls
39 lines (39 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<title> Learning HTML</title>
</head>
<body>
<h2>This is a header tag usedd to show the heading.</h2>
<h3>I am about to create a table to use it and learn for my exam, <br> walk with me on this journey</h3>
<table border="1">
<thead>
<tr>
<th colspan="2">Student Information</th>
<th>Grade</th>
</tr>
</thead>
<tbody>
<tr>
<td>Name</td>
<td colspan="2">John Dee</td>
</tr>
<tr>
<td>Age</td>
<td colspan="2">20</td>
</tr>
<tr>
<th colspan="3">Subjects Enrolled</th>
</tr>
<tr>
<td>Math</td>
<td rowspan="2">.Science</td>
</tr>
<tr>
<td>English</td>
<td colspan="2">History</td>
</tr>
</tbody>
</table>
</body>
</html>