-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformattribute.html
More file actions
78 lines (75 loc) · 2.39 KB
/
formattribute.html
File metadata and controls
78 lines (75 loc) · 2.39 KB
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
<Html>
<head>
<title>
Registration Page
</title>
</head>
<body bgcolor="Lightyellow">
<br>
<br>
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname">
<br>
<br>
<label>
Course :
</label>
<br>
<input type="radio" id="B.tech" name="Course" value="B.tech">
<label for="male">Btech</label><br>
<input type="radio" id="M.tech" name="Course" value="M.tech">
<label for="female">M.tech</label><br>
<br>
<br>
<label>
Choose Subject/s:
</label>
<br>
<input type="checkbox" id="Subject" name="Subjec" value="Machine Learning">
<label for="Subject"> Machine Learning</label><br>
<input type="checkbox" id="Subject" name="Subject" value="Ethical Hacking">
<label for="Subject"> Ethical Hacking</label><br>
<input type="checkbox" id="Subject" name="Subject" value="Web Development">
<label for="Subject"> Web Development</label>
<input type="checkbox" id="Subject" name="Subject" value="Cyber security">
<label for="Subject"> Cyber security</label>
<br>
<br>
<label>
Gender :
</label><br>
<input type="radio" name="male"/> Male <br>
<input type="radio" name="female"/> Female <br>
<input type="radio" name="other"/> Other
<br>
<br>
<label>
Phone :
</label>
<input type="text" name="country code" value="+91" size="2"/>
<input type="number" name="phone" size="10"/> <br> <br>
Address
<br>
<textarea cols="80" rows="5" value="address">
</textarea>
<br> <br>
Description
<br>
<textarea cols="80" rows="5" value="address">
</textarea>
<br> <br>
Email:
<input type="email" id="email" name="email"/> <br>
<br> <br>
Password:
<input type="Password" id="pass" name="pass"> <br>
<br> <br>
Re-type password:
<input type="Password" id="repass" name="repass"> <br> <br>
<a href="https://github.com/SumitkumarMohanta"><input type="button" value="Submit"/>welcome to my github </a>
</form>
</body>
</html>