-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML_Table.html
More file actions
38 lines (38 loc) · 921 Bytes
/
Copy pathHTML_Table.html
File metadata and controls
38 lines (38 loc) · 921 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
<!DOCTYPE html>
<html lang="en">
<!--to make a table, you can use the <table> tag. tr specifies
the table row, and td specifies the table cell. th specifies
headers for a particular table row. -->
<link rel="stylesheet" type="text/css" href="CSS_Table.css">
<body>
<center>
<h1>Countries Around the World</h1>
<table style="width:500px">
<tr style="width:500px">
<th>Country</th>
<th>Continent</th>
<th>Population</th>
<th>Notes</th>
</tr>
<tr style="width:500px">
<td>United States</td>
<td>North America</td>
<td>320 Million</td>
<td>Largest Economy</td>
</tr>
<tr style="width:500px">
<td>China</td>
<td>Asia</td>
<td>1.4 Billion</td>
<td>Largest Economy PPP</td>
</tr>
<tr style="width:500px">
<td>France</td>
<td>Europe</td>
<td>67 Million</td>
<td>Largest maritime land</td>
</tr>
</table>
</center>
</body>
</html>