-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform filling.html
46 lines (44 loc) · 1.76 KB
/
form filling.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FORM FILLING</title>
</head>
<body>
<h2><em>APPLICATION FORM</em></h2>
<p>Hello Guys!Hope you all are doing absolutely great.<br>
2020 was really a bad experience but lets dig out something excellent out of it.<br>
So,here we announce our first JEE batch for 2021 droppers as well as freshers of class 12th.<br>
There would be two different batches for the same.<br>
Do fill this form if you are interested in our fully fledged courses.
</p><br>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>NAME:</label>
<input type="text" name="YOUR NAME" value="">
<label>CLASS:</label>
<input type="text">
<label>DATE OF BIRTH</label>
<input type="date" date="YOUR BIRTH DATE" value=""><br><br>
<label>PASSPORT SIZE PHOTO</label><br>
<input type="image"><br><br>
<label>YOUR EMAIL:</label>
<input type="email" name="YOUR EMAIL" value=""><br><br>
<label>WRITE YOUR QUERIES HERE:</label><br>
<textarea name="YOUR QUERIES" rows="10" cols="20"></textarea><br>
<input type="submit" name="">
</form>
<p>If you are a dropper,fill these credentials as well</p><br>
<form>
<label>12th marks card</label>
<input type="file">
<label>Jee rank card if applicable(for scholarship purpose)</label>
<input type="file">
</form>
<p>HOW WOULD YOU RATE OUR WEBSITE EXPERIENCE</p><br>
<form>
<label>RATE US</label>
<input type="range">
</form>
</body>
</html>