-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (71 loc) · 2.57 KB
/
index.html
File metadata and controls
77 lines (71 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="form">
<h1>please enter the credentials below</h1>
<form action="">
<Fieldset class="ls">
<legend style= "text-align: center;" class="syl">personal details</legend>
<label for="name" ">first name</label>
<input type="text" name="fname" id="fname"> <br>
<br>
<label for="name">last name</label>
<input type="text" name="lname" id="lname">
<br>
<br>
<label for="mail">email</label>
<input type="text" name="MAIL" id="MAIL">
</Fieldset>
<fieldset class="ls">
<legend style= "text-align: center;" class="syl">college details</legend>
<p>Please select your branch</p>
<select name="" id="">
<option value="cse">CSE</option>
<option value="cse">AI/ML</option>
<option value="cse">MECH</option>
<option value="cse">CST</option>
</select>
<BR></BR>
<P>please select your section</P>
<select name="" id="">
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
<option value="D">D</option>
</select>
<br>
<br>
</fieldset>
<fieldset class="ls">
<legend style= "text-align: center;" class="syl">personal details</legend>
<p>select your gender</p>
<label for="male">male</label>
<input type="radio" id="male" name="male" >
<label for="female">female</label>
<input type="radio" id="female" name="female" >
<p>are you a residant of India</p>
<label for="yes">yes</label>
<input type="radio" id="y" name="y" >
<label for="yes">no</label>
<input type="radio" id="n" name="n" >
</fieldset>
<fieldset class="ls">
<legend style= "text-align: center;" class="syl">terms and conditions</legend>
<p id="terms">*kindly accept our terms and condition to continue further</p>
<label for="yes">I here by accept all the terms and condition</label>
<input type="checkbox" id="y" name="y" >
</fieldset>
<br>
<fieldset id="k">
<button>submit</button>
</fieldset>
</form>
</div>
</body>
</html>