-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask-1.html
More file actions
41 lines (39 loc) · 1.21 KB
/
Copy pathTask-1.html
File metadata and controls
41 lines (39 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title><Task-1.html></Task-1></title>
<style>
table,th,td{
border:1px solid white;
border-collapse:collapse;
}
</style>
</head>
<body>
<a href="./index.html" style="text-decoration: none; font-size: larger; color: black;">Back to Home Page</a>
<center>
<table style="margin-top: 5%;" bordercolor="white" cellpadding="0" cellspacing="1" bgcolor="powderblue" height="100" width="580">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>80</td>
</tr>
</table>
</center>
</body>
</html>