-
Notifications
You must be signed in to change notification settings - Fork 0
/
task1html.html
33 lines (33 loc) · 1.03 KB
/
task1html.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Task 1</title>
</head>
<body>
<a href="index.html"> BACK TO INDEX</a>
<h1>HTML:Task 1</h1>
<table cellpadding="2px" width="50%">
<tr>
<th align="center" bgcolor=#96D4D4>First Name</th>
<th align="center"bgcolor=#96D4D4>Last Name</th>
<th align="center"bgcolor=#96D4D4>Age</th>
</tr>
<tr>
<td bgcolor=#96D4D4>Jill</td>
<td bgcolor=#96D4D4>Smith</td>
<td bgcolor=#96D4D4>50</td>
</tr>
<tr>
<td bgcolor=#96D4D4>Eve</td>
<td bgcolor=#96D4D4>Jackson</td>
<td bgcolor=#96D4D4>94</td>
</tr>
<tr>
<td bgcolor=#96D4D4>John</td>
<td bgcolor=#96D4D4>Doe</td>
<td bgcolor=#96D4D4>80</td>
</tr>
</table>
</body>
</html>