-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.html
49 lines (45 loc) · 1.51 KB
/
user.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./user.css">
</head>
<body>
<div id="main">
<h3>Registeration Form</h3>
<form id="form" >
<input type="text" id="name"
placeholder="Enter Your Name"
> <br> <br>
<input type="number" id="age"
placeholder="Enter Your Age"
> <br> <br>
<input type="text" id="place"
placeholder="Enter Place"
><br> <br>
<label>Select Batch Name : </label> <select id="batch">
<option value="">Batch Name</option>
<option value="Web-13">Web-13</option>
<option value="Web-14">Web-14</option>
<option value="Web-15">Web-15</option>
<option value="Web-16">Web-16</option>
<option value="Web-17">Web-17</option>
</select> <br> <br>
<label >Select Profession</label>
<select id="profession">
<option value="">Profession</option>
<option value="Guest">Guest</option>
<option value="Student">Student</option>
<option value="Backed Developer">Backend Developer</option>
<option value="Fronted Developer">Fronted Developer </option>
<option value="Full Stack Developer">Full Stack Developer</option>
</select> <br> <br>
<button>Register</button>
</form>
</div>
</body>
</html>
<script src="./user.js"></script>