-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
100 lines (90 loc) · 1.38 KB
/
contacts.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<html>
<head>
<title>Government site</title>
<style>
ul{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
background-color: #f00;
font-size:110%;
}
li {
float:left;
}
li a{
display:block;
color:white;
padding:14px 16px;
text-align:center;
}
a:hover:not(.home){
background-color:#000;
}
.home{
background-color: #4caf50;
}
#search{
width:300px;
}
#FP{
color:#f00;
}
#button{
background-color:#fff;
width:20%;
font-size: 15px;
}
#C{
color:#0f0;
}
</style>
</head>
<body align="Center">
<ul>
<li class="Home"><a href="index.html">Home</a></li>
<li class="Contents"><a href="index.html">Contents</a></li>
<li class="Contacts"><a href="contacts.html">Contacts</a></li>
<li class="search1"> <input id="search" type="text" placeholder="Search"/></li>
</ul>
<h1 id="C">Contact Information</h1>
<table align="center" cellpadding="20" valign="center" border=2px>
<thead ><b>
<tr>
<th>sr no.</th>
<th>name</th>
<th>contacts</th>
</tr><b>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Nikhil singh</td>
<td>7737968807</td>
</tr>
</tbody>
<tbody>
<tr>
<td>2</td>
<td>Akash saxena</td>
<td>8264564948</td>
</tr>
<tbody>
<tr>
<td>3</td>
<td>saheel kumar</td>
<td>7827070441</td>
</tr>
<tbody>
<tr>
<td>4</td>
<td>nishu rai</td>
<td>9916154193</td>
</tr>
</tbody>
</tbody>
</tbody>
</table>
</body>
</html>