-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal.html
100 lines (77 loc) · 2.64 KB
/
personal.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
<!DOCTYPE html>
<head>
<title>form</title>
</head>
<style>
label{
color: blue;
font-size: 20 px;
font-family: cursive;
align-items: stretch;
}
input{
color: rgb(242, 21, 109);
}
img{
width: 90px;
border-color: aqua;
border-style: dotted;
background-image: linear-gradient(red,blue);
}
body{
background-image: linear-gradient(rgb(55, 55, 231), rgb(38, 196, 146));
}
#newg{
color: crimson;
}
</style>
<body>
<form action="mailto: [email protected]" method="POST">
<a href="#footer" >jump down</a>
<br>
Name:
<input type="text" Name="Name" placeholder="enter your name"><br>
<br>
<div>you study in panjab university:
</div>
<input type="radio" name="yes" id="y">
<label for="y">yes</label>
<input type="radio" name="no" id="n">
<label for="n">no</label>
<br>
<br>
img align-items
<object data="" type=""></object>
<img align="middle" src="https://puchd.ac.in/asset/pu-logo.png" width="100" height="100" >
<br>
<br>
Gender:
<input type="checkbox" name="Male" id="g1">
<label for="g1" id="newg" > male </label>
<input type="checkbox" name="female" id="g2">
<label for="g2">female</label>
<br><br>
<br>
<p>
Our Mission
"The University has been incorporated for the purpose, among others, of making provision for imparting education in Arts, Letters, Science and the learned professions and of furthering advancement of learning, the prosecution of original research, with power to appoint University Professors, Readers and Lecturers, to hold and manage educational endowments, to erect, equip and maintain University colleges, libraries, laboratories and museums, to making regulations relating to the residence and conduct of students and to do all such acts as tend to promote study and research".</div>
<h3>provide your id</h3>
<input type="file" name="Indentity" id="ID1" placeholder="ID please">
<br><br>
<br><br>
<br>
<br>
select branch
<select name="branch" id="">
<option>--branch--</option>
<option > ECE</option>
<option>CSE</option>
<option>IT</option>
<option>Mech</option>
</select>
<button type="submit">Submit</button>
<input type="reset" value="reset" >
<footer id="footer">end </footer>
</form>
</body>
</html>