-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
51 lines (43 loc) · 935 Bytes
/
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
<html>
<head>
<link rel=stylesheet href="form.css">
<script src=form.js></script>
</head>
<h1> Hi!</h1>
<form name=myform onsubmit="return validateform()";>
<b>
My name is
<input type="text" name="Name" placeholder="Your fullname...";>
<br>
<br>
I am from
<input type="text" name="College" placeholder="Your College's name.";>
<br>
<br>
Gender
</b>
<select name=gender>
<option selected></option>
<option value=Male>Male</option>
<option value=Female>Female</option>
<option value=Other>Other</option>
</select>
<br>
<br>
<b>
Date of Birth
<input type=date name=date style="font-size:15px";>
<br>
<br>
You can reach me at
<input type=text name=email placeholder="Your E-mail address">
<br>
<br>
Set my password as
<input type=Password name=Pwd placeholder="Atleast 7 characters">
<br>
<br>
<button type=button onclick=clickbutton() id="button1">Done</button>
</b>
</form>
</html>