-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb page2.html
More file actions
37 lines (33 loc) · 810 Bytes
/
web page2.html
File metadata and controls
37 lines (33 loc) · 810 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
<!doctype html>
<html>
<head>
<title> Web Page </title>
</head>
<body>
<table border="3" cellpadding="10" cellspacing="10">
<tr bgcolor = "yellow">
<th> Name </th>
<th> Job Title </th>
<th> Email address </th>
<th> Contact </th>
</tr>
<tr>
<td> Anna Fitzgerald </td>
<td> Staff Writer </td>
<td>example@company.com </td>
<td> 864763628758</td>
</tr>
<tr>
<td> John Smith </td>
<td> Marketing Manager </td>
<td> example2@company.com </td>
<td> 75873637688</td>
</tr>
<tr>
<td> Zendaya Grace </td>
<td> CEO </td>
<td> example3@company.com </td>
<td> 674653779 </td>
</tr>
</body>
</html>