-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS_task1.html
53 lines (53 loc) · 1.66 KB
/
CSS_task1.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task1</title>
<link href="task1.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<table id="tab1" cellpadding="1" cellspacing="2" bgcolor="lightblue">
<tr>
<th height="10" width="300">Firstname</th>
<th height="10" width="300">Lastname</th>
<th height="10" width="130">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>
</br>
<table id="tab2" cellspacing="10" >
<tr>
<td id="c1" height="30" width="50"></td>
<td id="c2" height="30" width="50"></td>
<td id="c3" height="30" width="50"></td>
</tr>
<tr>
<td id="c4" height="30" width="50"></td>
<td id="c5" height="30" width="50"></td>
<td id="c6" height="30" width="50"></td>
</tr>
<tr>
<td id="c7" height="30" width="50"></td>
<td id="c8" height="30" width="50"></td>
<td id="c9" height="30" width="50"></td>
</tr>
</table>
</center>
</body>
</html>