-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathform.html
75 lines (63 loc) · 2.83 KB
/
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
<html>
<link rel="stylesheet" href="style.css">
<body class="formspage">
<h1 class="formhead">Welcome to essay competition</h1>
<form class="formelements" action = "/ThankYou.html">
<label for="fname">Name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="regno">Registration no.:</label><br>
<input type="number" id="regno" name="regno"><br>
<label for="mail">Email Id:</label><br>
<input type="text" id="mail" name="mail"><br>
<p class="subject">Choose any one of the topics below for your essay.</p>
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">75 years of Independence- a journey</label><br>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">Letter to a new born India</label><br>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">What do you expect from India</label><br><br><br>
<label for="Submission link" class="link">Enter you submission link</label><br>
<input type="text" id="Submission link" name="Submission link"><br><br><br><hr>
<input type="radio" id="pyt" name="fav_language" value="python">
<label for="pyt">Python</label>
<!-- <input type="submit" value="Submit"> -->
<!-- <a href="ThankYou.html">
<input type="submit"/>
</a> -->
<!-- <a href="ThankYou.html"> -->
<input type="submit"/>
</form>
<form name="RegForm" onSubmit="return validate()" method="post"></form>
<p>
Name<span id="star">*</span>
<input type="text" size="65" name="Name" />
</p>
<br />
<p>Address: <input type="text" size="65" name="Address" /></p>
<br />
<p>
Zip Code:<span id="star">*</span>
<input type="text" size="65" name="ZipCode" />
</p>
<br />
<p>
Phone Number: <span id="star">*</span
><input type="text" size="65" name="Telephone" />
</p>
<br />
<p>
E-mail Address: <span id="star">*</span
><input type="text" size="65" name="EMail" />
</p>
<br />
<p>password (6-8 characters) <span id="star">*</span> <input type="text" size="65" name="Password" /></p>
<br />
<p>Pan Card number: <input type="text" size="65" name="PANCard" /></p>
<br />
<p>
<input type="submit" value="Submit" name="Submit"/>
<input type="reset" value="Reset" name="Reset" />
</p>
</form>
</body>
</html>