forked from Rohitpal0123/Travelling-Registration-Form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 2.71 KB
/
index.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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./Styling_form.css">
<title>High Fly Travellers</title>
</head>
<body>
<div class="regform" ><h1> Registration Form</Form></h1></div>
<div class="main" >
<form>
<div id="name">
<h2 class="name">Full Name :</h2>
<input required autocomplete="off" type="text" class="Firstname" name="First_name" placeholder="First name" ><br>
<label class="firstlabel">Enter your first name</label><br>
<input required autocomplete="off" type="text" placeholder="Last name" class="lastname" name="lastname"><br>
<label class="lastlabel">Enter your last name</label><br>
</div>
<h2 class="name">School : </h2>
<input required autocomplete="off" type="text" class="company" name ="company" placeholder="Enter company name">
<h2 class="name">Email : </h2>
<input required autocomplete="off" type="text" class="email" name="Email" placeholder=" E.g- abcd@gmail.com">
<h2 class="name"> Contact Details :</h2>
<input required autocomplete="off" type="text" class="pincode" name="area_pincode" placeholder="Enter valid areacode"><br>
<label class="pincodeL">Area Code</label><br>
<input required autocomplete="off" type="text" class="number" name="phone nuber" placeholder="E.g- +91 8549564785"><br>
<input required autocomplete="off" type="text" class="code" name="country code" placeholder="E.g- +108"><br>
<label class="countrycodeL">Country Code</label>
<label class="PhoneNumberL">Phone Number</label><br>
<h2 class="name">Your Purpose : </h2>
<select name="subject" class="option">
<option disabled="disabled" selected="selected">Choose purpose</option>
<option>Vacation</option>
<option>Studies</option>
<option>Work/Buisness</option>
<option>Immigration</option>
</select>
<h3 id="student">Are you a citizen ? </h3>
<label class="radio">
<input required type="radio" class="radio-one" c name="">
<span class="checkmark"></span>
Yes
</label>
<label class="radio">
<input required type="radio" class="radio-two" name="">
<span class="checkmark"></span>
No
</label><br>
<button type="submit" style="cursor: pointer;"><b>Submit</b></button>
</form>
</body>
</html>