-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcontact form.html
76 lines (69 loc) · 2.35 KB
/
contact form.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
<html >
<head>
<link rel="stylesheet" type="text/css" href="abt.css">
</head>
<body>
<ul class="nav">
<div class="logo">
<a href="index.html">Ami de Farmer</a>
</div>
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#">Types Of Crops</a>
<ul>
<li><a href="#">Rice</a></li>
<li><a href="#">Wheat</a></li>
<li><a href="#">Jhowar</a></li>
<li><a href="#">Barley</a></li>
</ul>
</li>
<li><a href="#">Government Of India</a>
<ul>
<li><a href="http://mofpi.nic.in/Schemes/pradhan-mantri-kisan-sampada-yojana">Prime Minisiter Kisan Sampada Yojna</a></li>
<li><a href="http://omms.nic.in/">Gram Sadak Yojna</a></li>
<li><a href="http://www.yourarticlelibrary.com/agriculture/agricultural-subsidies-kinds-of-agricultural-subsidies-in-india/40242">Subsidies</a></li>
<li><a href="https://www.pmgdisha.in/">PMG disha</a></li>
</ul>
</li>
<li><a href="contact.html">Gallery</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="C:\Users\Sajan A\Desktop\seminar\Login Page\login.html">Login/Register</a></li>
</ul>
</div>
<div class="heading">Contact Form</div>
<form>
<br>
<b>First Name:</b><input type=”text” name=”subject” size =”10”>
<br><br>
<b>Last Name:</b><input type=”text” name=”subject” size =”10”>
<br><br>
<b>Select Gender:</b>
<br><br>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
<br><br>
<b>Date of Birth:</b>
<input id="date" type="date">
<br><br>
<b>Address:</b><input type=”text” name=”subject” size =”10”>
<br><br>
<b>City:</b><input type=”text” name=”subject” size =”10”>
<br><br>
<b>Pin code:</b><input type=”text” name=”subject” size =”10”>
<br><br>
<b>Marital Status:</b>
<select name="Category">
<option>Married</option>
<option>Unmarried</option>
</select>
<br><br><br>
<b>Comments:</b><input type=”text” name=”subject” size =”10”><br>
<input type="button" onclick="alert('Your Request has been sucessfully submited.Our team will contact you in 12 hours.Thank you.')" value="Submit">
<br><br>
<input type="reset" value="Reset">
</form>
</body>
</html>