-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
45 lines (44 loc) · 1.16 KB
/
Copy pathtable.html
File metadata and controls
45 lines (44 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Table example">
<title>William Meza - Table</title>
<link rel="stylesheet" href="/css/table.css">
</head>
<body>
<table>
<tbody>
<tr>
<th colspan="2" class="title">Wasatch Systems</th>
</tr>
<tr>
<th>Customer</th>
<th>Total Sales</th>
</tr>
<tr>
<td>Brian Heath</td>
<td>$456.43</td>
</tr>
<tr>
<td>Mylan Rocco</td>
<td>$403.10</td>
</tr>
<tr class="middle">
<td>Sarah Huang</td>
<td>$1456.30 💖</td>
</tr>
<tr>
<td>Lupe Rodriguez</td>
<td>$500.93</td>
</tr>
<tr>
<td>Ethel Smith</td>
<td>$1156.13</td>
</tr>
</tbody>
</table>
</body>
</html>