-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTable.html
More file actions
42 lines (40 loc) · 906 Bytes
/
Table.html
File metadata and controls
42 lines (40 loc) · 906 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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Website</title>
</head>
<body>
<h1>Topic Table</h1>
<table border="4" width="400"
<tr>
<th>no.</th>
<th>full name</th>
<th>position</th>
<th>salary</th>
</tr>
<tr>
<td>1.</td>
<td>bill gates</td>
<td>Founder Microsoft</td>
<td>$ 1000</td>
</tr>
<tr>
<td>2.</td>
<td>steve jobs</td>
<td>Founder Apple</td>
<td>$ 1200</td>
</tr>
<tr>
<td>3.</td>
<td>Lary Page</td>
<td>Founder Google</td>
<td>$ 1100</td>
</tr>
<tr>
<td>4.</td>
<td>Mark Zuckeberg</td>
<td>Founder Facebook</td>
<td>$ 1300</td>
</tr>