-
Notifications
You must be signed in to change notification settings - Fork 0
/
student.htm
108 lines (82 loc) · 2.11 KB
/
student.htm
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
<html>
<head>
<title>LOGIN </title>
</head>
<style>
img{
position:absolute;
width:30%;
height:80%;
top:100px;
left:150px;
}
body {
position:absolute;
background-repeat: no-repeat;
margin:0px;
padding:0px;
}
.box{
font-family:Stencil Std, fantasy;
width: 30%;
height:10%;
border: 8px solid white;
position:relative;
top:130px;
left:700px;
;
}
.box input:hover{
background-color: #000000;
}
::placeholder {
color: red;
text-align:center;
}
.box input
{
background-color: white;
border-style: solid;
border-width: 9px;
width: 90%;
padding: 12px 20px;
border: black 2px;
font-size:15px;color: red;
border-radius: 90px 90px;
margin: 8px 0;
font-family:Tahoma, sans-serif;
}
.box button{
background-color: orange;
border: none;
text-decoration: none;
padding: 20px 20px;
margin: 20px 20px;
cursor: pointer;
font-family:Stencil Std, fantasy
}
label{
color: white;
font-family:Tahoma, sans-serif;
font-size:50px;
position:absolute;
top:20px;
left:250px;
}
</style>
<body background="image/drew-beamer-Lhgt4JjW-hs-unsplash.jpg">
<img src="image/pnghut_student-school-education-learning-logo.png">
<label>ENTER THE STUDENT DETAILS AND MARKS</label>
<form class="box" action="mark.php" align="center">
<input type="number" placeholder=" STUDENT ID" name="id" required>
<input type="text" placeholder="STUDENT NAME" name="name" required>
<input type="text" placeholder="DOB" name="date" required>
<input type="number" placeholder="LANGUAGE MARK " name="lang" required>
<input type="number" placeholder="ENGLISH MARK" name="english" required>
<input type="number" placeholder="MATHS MARK" name="maths" required>
<input type="number" placeholder="SCIENCE MARK" name="science" required>
<input type="number" placeholder="SOCIAL MARK" name="social" required>
<button type ="submit" formaction="mark.php"> SUBMIT THE DATA </button>
</form>
</body>
</html>