forked from AswinPG/FossLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
55 lines (51 loc) · 841 Bytes
/
contact.html
File metadata and controls
55 lines (51 loc) · 841 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
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h2>Contact any of the team members</h2>
<table>
<tr>
<th>Name</th>
<th>Phone Number</th>
<th>e-mail ID</th>
<th>Roll Number</th>
</tr>
<tr>
<td>Aswin P G</td>
<td>7560931829</td>
<td>aswinpg4444@outlook.com</td>
<td>17</td>
</tr>
<tr>
<td>Midhun Raj</td>
<td>7558867597</td>
<td>pkd16cs033@gecskp.ac.in</td>
<td>33</td>
</tr>
<tr>
<td>Navaneeth Krishnan</td>
<td>9446405456</td>
<td>pkd16cs034@gecskp.ac.in</td>
<td>34</td>
</tr>
<tr>
<td>Neeraja B S</td>
<td>9495077352</td>
<td>bsneeraja@gmail.com</td>
<td>36</td>
</tr>
<tr>
<td>Neha A M</td>
<td>8086622455</td>
<td>nehaachuparambil@gmail.com</td>
<td>38</td>
</tr>
</table>
</body>
</html>