-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML_Table.html
More file actions
27 lines (27 loc) · 763 Bytes
/
HTML_Table.html
File metadata and controls
27 lines (27 loc) · 763 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
<!DOCTYPE html>
<html lang="en">
<body>
<h2>Game of Chess table</h2>
<table style="width: 100%">
<tr>
<th>Name</th>
<th>Phone Number</th>
<th>Email</th>
<th>Notes</th>
</tr>
<tr>
<td>Joshua David</td>
<td>1231231234</td>
<td>jd@hotmail.com</td>
<td>I am a winner</td>
</tr>
<tr>
<td>Mary Jones</td>
<td>5566226677</td>
<td>mj@yahoo.com</td>
<td>I am the champion</td>
</tr>
</table>
<link rel="stylesheet" type="text/css" href="CSS_Table.css">
</body>
</html>