-
Notifications
You must be signed in to change notification settings - Fork 0
/
Addmission.html
171 lines (163 loc) · 5.5 KB
/
Addmission.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!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>Form </title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<style>
table,tr,td
{
padding:10px ;
font-family: 'Montserrat', sans-serif;
align-items: center;
margin-left: auto;
margin-right: auto;
}
h1
{
padding:10px ;
font-family: 'Montserrat', sans-serif;
}
body
{
color:purple;
background-color:whitesmoke;
}
input
{
float: inline-end;
}
input:hover
{
border: 2px solid violet;
}
.normal{
text-align: center;
}
form
{
margin-left: auto;
margin-right: auto;
width: 500px;
border:1px solid violet;
border-radius: 20px;
}
form:hover
{
border-left:5px solid violet;
border-right:0.5px solid violet;
border-top:3px solid violet;
border-bottom:5px solid violet;
border-radius: 20px;
}
</style>
</head>
<body>
<div class="box">
<form action="www.google.com" method="GET">
<div class="box-header">
<h1 class="normal">
Admission Application
</h1>
</div>
<table>
<tr>
<td>
<label for="username">Enter Username </label>
</td>
<td>
<input type="text" name="Username" id="" placeholder="Username" required>
</td>
</tr>
<tr>
<td>
<label for="password">Enter Password</label>
</td>
<td>
<input type="password" name="password" id="" placeholder="Password" required>
</td>
</tr>
<tr>
<td>
<label for="Email">Email</label>
</td>
<td>
<input type="email" name="Email" id="" placeholder="Email" required>
</td>
</tr>
<tr>
<td>
<label for="Phone Number">Phone Number</label>
</td>
<td>
<input type="tel" name="phone number" id="" placeholder="Phone no" size="10" required>
</td>
</tr>
<tr>
<td>
<label for="Date of Birth">Enter Your age</label>
</td>
<td>
<input type="date" name="Age" id="" min="1996-3-2" max="2007-3-2" required>
</td>
</tr>
<tr>
<td>
<label for="Course Selection">Course</label>
</td>
<td>
<input list="Courses" name="CourseSelection"/>
<datalist id="Courses">
<option value="Btech" >
<option value="Mtech" >
<option value="PHD">
</datalist>
</td>
</tr>
<tr>
<td>
<label for="Gender">Gender</label>
</td>
<td>
<input type="radio" name="Male" id="" placeholder="Male" required>
Male</input>
<input type="radio" name="Male" id="" placeholder="Male">
Female</input>
<input type="radio" name="Male" id="" placeholder="Male">
Others</input>
</td>
</tr>
<tr>
<td>
<label for="Hobbies">Hobbies</label>
</td>
<td>
<textarea name="Hobbies" id="" cols="30" rows="10"></textarea>
</td>
</tr>
<tr>
<td>
<label for="Address">Address</label>
</td>
<td>
<input type="text" name="Address" id="">
</td>
</tr>
<tr>
<td>
<input type="submit" name="Submit" id="">
</td>
<td>
<input type="reset" name="Reset" id="">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>