-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_html.html
More file actions
46 lines (46 loc) · 1.07 KB
/
Copy pathsample_html.html
File metadata and controls
46 lines (46 loc) · 1.07 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
46
<!doctype html>
<html lang="en">
<head>
<title>Contact Us Form</title>
</head>
<body><center>
<table style="width: 50%; margin-top: 10px; font-size: 0.8em;" border="1px">
<tr align="center" >
<th style="padding:2px;">First Name</th>
<th style="padding:2px;" >Last Name</th>
<th style="padding:2px;">Age</th>
</tr>
<tr>
<td>John </td>
<td>Doe </td>
<td>78 </td>
</tr>
<tr>
<td>Joe </td>
<td>Doe </td>
<td>56 </td>
</tr>
<tr>
<td>Jonny </td>
<td>Doe </td>
<td>38 </td>
</tr>
<tr>
<td>Eve </td>
<td>Jack </td>
<td>38 </td>
</tr>
<tr>
<td>MS </td>
<td>Dhoni </td>
<td>46 </td>
</tr>
<tr>
<td>Sachin </td>
<td>Tendulkar </td>
<td>49 </td>
</tr>
</table>
</center>
</body>
</html>