-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
148 lines (132 loc) · 4.24 KB
/
contactus.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<title> Contact us</title>
<link rel="stylesheet" type="text/css" href="exercise.css">
</head>
<body bgcolor="#ffffb3" style="font-size: 20px">
<form>
<table width="100%" >
<tr>
<td colspan="3" bgcolor="grey" id="top">
<p id="top"><b><a href="index.html"><b>HOMEPAGE</b></a>  
<a href="events.html"><b>EVENTS</b></a> 
<a href="aboutus.html"><b>ABOUT US</b></a> 
<a href="gallery.html"><b>OUR GALLERY</b></a> <a href="register.html"><b>REGISTER NOW</b></a> 
<a href="contactus.html"><b>CONTACT US</b></a></b></p>
</td></tr>
<tr bgcolor="#ffffcc">
<td width="20%" valign="top" ><img src="pictures/logo3.jpg" width="150" height="100"></td>
<td><font size="7"><h1><center><font color="
red"></font></center><center><font color="grey">Contact Us</font></center></h1></font></td>
<td valign="top" align="right">
<img src="pictures/facebook.jpg" width="35" height="35">
<img src="pictures/whatsapp.jpg"width="35" height="35">
<img src="pictures/twitter.png"width="35" height="35">
<img src="pictures/youtube.png"width="35" height="35">
<img src="pictures/interest.jpg"width="35" height="35">
<img src="pictures/snapchat.jpg"width="35" height="35">
</td>
</tr>
<tr>
<td colspan="3"><hr></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td width="20%">
<label for="name"><b>NAME</b></label>
</td>
<td>
<input type="text" name="name" id="name" placeholder="Enter your Name">
</td>
</tr>
<td>
<label for="useremail"><b>EMAIL ADDRESS</b></label>
</td>
<td>
<input type="Email" name="useremail" id="useremail" placeholder="Enter your Email" >
</td>
</tr>
<tr>
<td>
<label for="userphone"><b>PHONE NUMBER</b></label>
</td>
<td>
<input type="text" name="userphone" id="userphone" maxlength="11" placeholder="Enter your Phone Number">
</td>
</tr>
<tr>
<td>
<label><b>GENDER</b></label>
</td>
<td>
<input type="radio" name="sex" id="male"><label for="male">Male</label><br>
<input type="radio" name="sex" id="female"><label for="Female">Female</label><br>
<input type="radio" name="sex" id="other"><label for="other">Other</label>
</td>
</tr>
<tr>
<td>
<label for="useraddress"><b>HOME ADDRESS</b></label>
</td>
<td>
<textarea cols="30" rows="5" id="useraddress"></textarea>
</td>
</tr>
<tr>
<td><label for="userstate"><b>STATE</b></label></td>
<td>
<select name="userstate" id="userstate">
<option>Select your State</option>
<option>Lagos</option>
<option>Ogun</option>
<option>Oyo</option>
<option>Osun</option>
<option>Ondo</option>
<option>Imo</option>
<option>Anambra</option>
<option>Adamawa</option>
<option>Kaduna</option>
<option>Niger Delta</option>
</select>
</td>
</tr>
<tr>
<td style="word-wrap: "><B>I WOULD LIKE TO RECEIVE FEEDBACK VIA</B></td>
<td>
<input type="checkbox" name="phone" id="phone">Phone Call<br>
<input type="checkbox" name="mail" id="mail">Email
</td>
</tr>
<tr>
<td align="center" colspan="2"><input width="10px" type="reset" name="clear" id="clear" value="clear">  <a href="message.html"><input type="button" name="Enter" id="Enter" value="Enter"></a>
</td></tr>
<tr>
<td bgcolor="#ffff4d" colspan="3">
<p><b><font color="red">ADDRESS</font></b></p>
<font ><b>Refiner Private School</b><br>
Plot 1 to 6,Peace Estate,<br>
Ajegunle,<br>
Maya,<br>
Ikorodu,<br>
Lagos State.
<p><b><font color="red">PHONE NUMBERS</font></b></p>
08072734379<br>
08081988515<br>
08082544242
</font></td>
</tr>
<tr>
<td colspan="3" bgcolor="#ffff80">
<center>
Copyright 2017.<br> All rights Reserved.<br>Refiner Private School.<br>Powered by Francis developers Ltd<br>
</center>
</td>
</tr>
</table>
<div id="goup"><a href="contactus.html#top"><img src="pictures/facebook.jpg" width="20" height="20"></a></div>
</form>
</body>
</html>