-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb03_tables.html
More file actions
48 lines (39 loc) · 936 Bytes
/
web03_tables.html
File metadata and controls
48 lines (39 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
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tables Examples</title>
</head>
<body>
<table align="center" width="530px" border="5px">
<tr>
<td align="center"> cel 11 </td>
<td align="center">cel 12</td>
<td align="center">cel 13</td>
</tr>
<tr>
<td align="center">cel 21</td>
<td align="center">cel 22</td>
<td align="center">cel 23</td>
</tr>
<tr>
<td align="center">cel 31</td>
<td align="center">cel 32</td>
<td align="center">cel 33</td>
</tr>
</table>
<table align="center" bgcolor="yellow" width="1300px" border="5px">
<tr align="center">
<th> Title Col1 </th>
<th>Title Col2</th>
</tr>
<tr>
<td align="left" bgcolor="red">cel 21</td>
<td align="right" bgcolor="green">cel 22</td>
</tr>
<tr>
<td align="center" bgcolor="white" colspan="2">merge 2 cels</td>
</tr>
</table>
</body>
</html>