-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.html
38 lines (38 loc) · 995 Bytes
/
basic.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
<!doctype html>
<html>
<head>
<title>First Lesson</title>
<link rel="stylesheet" type="text/css" href="basiccss.css">
</head>
<body>
<h1>Our First Lesson</h1>
<p>Our first lesson in Java was very interesting. We did it using a Lenovo laptop with windows 8. It was done beside the <a href="www.facebook.com">Mosque</a>.</p>
<img src="nigeria.jpg" height="220" width="160" alt="Nigeria's statistics">
<table border="2">
<tr>
<th>Class</th>
<th>No of Boys</th>
<th>No of Girls</th>
<th>Total</th>
</tr>
<tr>
<td>JSS 1</td>
<td>12</td>
<td>14</td>
<td>26</td>
</tr>
<tr>
<td>SSS 1</td>
<td>15</td>
<td>14</td>
<td>29</td>
</tr>
</table>
<br />
<table border="1">
<tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> </tr>
<tr><td rowspan="2">Row 1 Cell 1</td><td>Row 1 Cell 2</td><td>Row 1 Cell 3</td></tr>
<tr><td>Row 2 Cell 2</td><td>Row 2 Cell 3</td></tr>
<tr><td colspan="3">Row 3 Cell 1</td></tr> </table>
</body>n
</html>