-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (58 loc) · 1.78 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact</title>
</head>
<body>
<style>
body {
background-image: url('contact.jpg');
background-repeat: round;
background-attachment: fixed;
background-size: cover;
}
</style>
<li><a href="index.html" style="font-style: oblique; color:rgb(30, 0, 139); font-size: medium;" >Home</a></li>
<li><a href="Blog.html" style="font-style: oblique; color:rgb(30, 0, 139); font-size: medium;" >Blog</a></li>
<li><a href="contact.html" style="font-style: oblique; color:rgb(2, 0, 139);font-size: medium">Contact</a></li>
<form method="get">
<table align="center"
cellspacing="10">
<tr>
<td colspan=2>
<center><font size=6><b><h1><u>Contact Form</u></h1></b></font></center>
</td>
</tr>
<tr>
<td><b>First Name</td>
<td><input type=text name=textnames id="textname" size="30"></td>
</tr>
<tr>
<td><b>Last Name</td>
<td><input type="text" name="fathername" id="fathername"
size="30"></td>
</tr>
<tr>
<td><b>Mobile NO.</td>
<td><input type="number" name="pincode" id="pincode" size="30"></td>
</tr>
<tr>
<td><b>Email Id</td>
<td><input type="email" name="emailid" id="emailid" size="30"></td>
</tr>
<tr>
<td><b>Do you want to meet in person</td>
<td><input type="radio" name="drive" value="yes" size="10"><b>YES
<input type="radio" name="drive" value="NO" size="10"><b>NO</td>
</tr>
<tr>
<td><input type="reset"></td>
<td colspan="2"><input type="submit" value="Submit Form" /></td>
</tr>
</table>
</form>
</body>
</html>