-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTMLtable
More file actions
38 lines (34 loc) · 870 Bytes
/
HTMLtable
File metadata and controls
38 lines (34 loc) · 870 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>
<head>
<meta charset="utf-8">
<title>HTML BASICS</title>
</head>
<body>
<!-- name of the table -->
<h3>Skateboard Things</h3>
<!-- this is a data table and can help display data on a website -->
<!-- this is how you create a table -->
<table>
<!-- this is a table row -->
<!-- this is how we create rows for the table -->
<tr>
<!-- th this is a table header -->
<th>Deck</th>
<th>Trucks</th>
<th>Bearings</th>
</tr>
<tr>
<!-- now we are creating table cells in a new row -->
<!-- td this is a table cell -->
<td>Toy Machine</td>
<td>Destructo's</td>
<td>Bone Swiss</td>
</tr>
<tr>
<td>Fast Lightning</td>
<td>Team Hungerforce</td>
<td>Swiss Cheese</td>
</tr>
<!-- it is recommended that you use CSS for table styles -->
</body>
</html>