-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
68 lines (56 loc) · 1004 Bytes
/
table.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>INFORMATION TABLE </title>
</head>
<body>
<table border="4">
<tr>
<th>
FULL NAME
</th>
<th>
EMAIL
</th>
<th>
MOBILE NUMBER
</th>
<th>
CITY
</th>
</tr>
<tr align = "center">
<td>
YASH PATEL
</td>
<td>
</td>
<td>
9090909090
</td>
<td>
rajkot
</td>
</tr>
<tr align = "center">
<td>keyur tanna</td>
<td>[email protected]</td>
<td>1212121212</td>
<td> rajkot </td>
</tr>
<tr align = "center">
<td>harsh panchal</td>
<td>[email protected]</td>
<td>4545454545</td>
<td>vadodara</td>
</tr>
<tr align = "center">
<td>jigar makadiya</td>
<td>[email protected]</td>
<td>1234123456</td>
<td>porbandar</td>
</tr>
</table>
</body>
</html>