-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS_Task-1.html
More file actions
39 lines (38 loc) · 936 Bytes
/
CSS_Task-1.html
File metadata and controls
39 lines (38 loc) · 936 Bytes
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>
<head>
<title>CSS_Task-1</title>
<style>
table,th,td{
border: 1px solid black;
border-radius: 10px;
}
</style>
</head>
<body>
<center>
<table style="margin-top:12%"; height="75" width="500" bgcolor="skyblue">
<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>