-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform1.html
More file actions
89 lines (78 loc) · 3.43 KB
/
form1.html
File metadata and controls
89 lines (78 loc) · 3.43 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
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADMISSION FORM</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<div class="logo">
<h1>College Portal</h1>
</div>
<nav class="nav-bar">
<div class="nav-item">
<span class="nav-title">Form 1</span>
</div>
</nav>
</header>
<main class="content-section">
<div class="form-container">
<h1>Student Admission Form</h1>
<h2>Welcome to our college portal</h2>
<p class="blink-alert">NOTE: KEEP ALL THE LETTERS IN CAPITAL.</p>
<form>
<div class="form-group">
<label for="studentName">ENTER YOUR NAME</label>
<input type="text" id="studentName" name="studentName">
</div>
<div class="form-group">
<label for="fatherName">ENTER YOUR FATHER'S NAME</label>
<input type="text" id="fatherName" name="fatherName">
</div>
<div class="form-group">
<label for="motherName">ENTER YOUR MOTHER'S NAME</label>
<input type="text" id="motherName" name="motherName">
</div>
<div class="form-row">
<div class="form-group">
<label for="district">ENTER YOUR DISTRICT</label>
<input type="text" id="district" name="district">
</div>
<div class="form-group">
<label for="taluk">ENTER YOUR TALUK</label>
<input type="text" id="taluk" name="taluk">
</div>
</div>
<div class="form-group">
<label for="village">ENTER YOUR VILLAGE NAME</label>
<input type="text" id="village" name="village">
</div>
<div class="form-row">
<div class="form-group">
<label for="pincode">ENTER PIN CODE</label>
<input type="text" id="pincode" name="pincode">
</div>
<div class="form-group">
<label for="phone">ENTER YOUR PHONE NUMBER</label>
<input type="text" id="phone" name="phone">
</div>
</div>
<div class="btn-group">
<a href="form2.html" class="btn btn-accent">NEXT</a>
<a href="form1.html" class="btn">RESET THIS PAGE</a>
<a href="index.html" class="btn">HOME</a>
</div>
</form>
</div>
</main>
<footer class="footer">
<div class="copyright">© 2025 College Portal. All rights reserved.</div>
<div class="footer-links">
<div class="footer-link"><a href="#">Privacy Policy</a></div>
<div class="footer-link"><a href="#">Terms of Service</a></div>
</div>
</footer>
</body>
</html>