forked from PomoRev/CST8285_S22
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableexamp.htm
More file actions
44 lines (36 loc) · 932 Bytes
/
tableexamp.htm
File metadata and controls
44 lines (36 loc) · 932 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Prof. Frank Emanuel">
<meta name="email" content="emanuef@algonquincollege.com">
<meta name="date" content="2022-06-01">
<title>Tables for Fun</title>
</head>
<body>
<header>Tables for Fun</header>
<table>
<tr>
<td>George:</td>
<td><textarea name="Fred" id=""
cols="30" rows="10"></textarea></td>
</tr>
</table>
<table border="1">
<tr>
<td rowspan="3">col 1</td>
<td> col 2</td>
<td> col 3</td>
</tr>
<tr>
<td> 2</td>
<td> 3</td>
</tr>
<tr>
<td> 2</td>
<td> 3</td>
</tr>
</table>
</body>
</html>