forked from hardikmehta88999/Assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
48 lines (42 loc) · 949 Bytes
/
form.html
File metadata and controls
48 lines (42 loc) · 949 Bytes
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
<!DOCTYPE html>
<head>
<style>
.abc{
background-image:linear-gradient(red,yellow);
margin:0 400px 0 400px;
text-align:left;
}
input{
border-radius:20px;
}
textarea{
border-radius:20px;
}
legend{
font-size:40px;
}
</style>
</head>
<body>
<form class="abc" >
<fieldset class="xy">
<legend align="center" style="font-family:Comic Sans MS" >Introduction</legend>
Name: <br><input type="text" name="Name"><br><br>
Mobile no: <br><input type="text" name="Class" ><br><br>
Email-id :<br><input type"text"><br><br>
Password :<br><input type="text"><br><br>
Gender:<br>
<input type="radio" >Male
<input type="radio">Female<br><br>
Interest:<br>
<input type="checkbox" >Reading <br>
<input type="checkbox">Watching <br>
<input type="checkbox">Playing<br>
<input type="checkbox">Art<br>
Description : <textarea rows="5" cols="50" input-type="text"></textarea> <br>
<br>
<input type="button" value="Submit">
</fieldset>
</form>
</body>
</html>