-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.01 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.01 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
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<table>
<tr> <!-- start row 1 has 4 columns, th makes a column heading -->
<th>Company</th>
<th>Contact</th>
<th>Country</th>
<th>Bird</th>
</tr> <!-- end row 1 -->
<tr> <!-- row 2 has 4 columns, td breaks the row into columns -->
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
<td>Swan</td>
</tr> <!-- end row 2 -->
<tr> <!-- row 3 -->
<td>Centro comercial Moctezuma</td>
<td>Francisco Chang</td>
<td>Mexico</td>
<td>Eagle</td>
</tr> <!-- end row 3 -->
<tr> <!-- row 4 has 4 columns -->
<td>Island Trading</td>
<td>Helen Bennett</td>
<td>England</td>
<td>Chicken</td>
</tr> <!-- end row 4 -->
</table>
</html>