-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12_display_data_table.html
More file actions
29 lines (26 loc) · 1.08 KB
/
12_display_data_table.html
File metadata and controls
29 lines (26 loc) · 1.08 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
<!--
Important Notes:
Defining table : there are a couple of key components that make up the overall structure.
1. Caption - Which is the imporatant piece of information for telling the user what this table
shows them.
2. Header.
3. Body.
4. Footer.
Structuring Data with Row and Columns :
1. <TR> (Table Row) - That defines wrapper around the entire row.
2. <TH> (Table header) - TH is the header of your table each element or cell within there is defined with a TH.
3. <TD> (Table Data) - TD or table data element ti identify that table cell.
4. colspan / rowspan - Particular cell can span across multiple columns or multiple rows.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1><a href="./content/nutrition.html">Nutrition Information</a></h1>
</body>
</html>