-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
87 lines (73 loc) · 2.66 KB
/
Contact.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
</head>
<body>
<header>
<h1>Welcome to Incredible India</h1>
<p>Discover the diversity, beauty, and rich heritage of India!</p>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Culture.html">Culture</a></li>
<li><a href="Landmark.html">Landmarks</a></li>
<li><a href="Cuisine.html">Cuisine</a></li>
<li><a href="Contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact Us</h1>
<p>Please fill out the form below for any inquiries or to register as a student.</p>
<h2>Student Registration Form</h2>
<form>
<label for="first-name">First Name:</label>
<input type="text" id="first-name" name="first-name" placeholder="Enter your first name">
<br>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<br>
<label>Gender:</label>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label>
<br>
<label for="newsletter">Subscribe to Newsletter:</label>
<input type="checkbox" id="newsletter" name="newsletter">
<br>
<label for="state">State:</label>
<select id="state" name="state">
<option value="">Select your state</option>
</select>
<br>
<label for="resume">Upload Resume:</label>
<input type="file" id="resume" name="resume">
<br>
<label for="address">Address:</label>
<textarea id="address" name="address" placeholder="Enter your full address"></textarea>
<br>
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob">
<br>
<label for="interview-time">Preferred Interview Time:</label>
<input type="time" id="interview-time" name="interview-time">
<br>
<label for="marks">Marks:</label>
<input type="text" id="marks" name="marks">
<br>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</form>
<section>
<h2>More Information</h2>
<p>Explore government job opportunities on the official OJAS website:</p>
<script src="https://ojas.gujarat.gov.in/" type="text/ojas"></script>
</main>
<footer>
<p>Back to <a href="#">Home</a></p>
<p>Contact us at <a href="mailto:[email protected]">[email protected]</a></p>
<p>© 2025 Incredible India Project</p>
</body>
</html>