forked from theonlyanson/Hacktoberfest-2022
-
Notifications
You must be signed in to change notification settings - Fork 1
/
entry.php
111 lines (81 loc) · 3.41 KB
/
entry.php
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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div class="container ag">
<form action="" method="POST" >
<div class="row mt-4">
<div class="col-sm-6">
<h3>Subjects</h3>
</div>
<div class="col-sm-6">
<h3>Marks</h3>
</div>
</div>
<hr>
<div class="form-group row">
<div class="col-sm-6">
<h4>ADE</h4>
</div>
<div class="col-sm-6">
<input type="text" name="ade_mrk" class="form-control form-control-lg" id="colFormLabelSm" placeholder="">
</div>
</div>
<hr>
</div>
<hr>
<div class="form-group row mt-4">
<div class="col-sm-6">
<h4>DSA</h4>
</div>
<div class="col-sm-6">
<input type="text" name="dsa_mrk" class="form-control form-control-lg" id="colFormLabelSm" placeholder="">
</div>
</div>
<hr>
</div>
<hr>
<div class="form-group row">
<div class="col-sm-6">
<h4>CO</h4>
</div>
<div class="col-sm-6">
<input type="text" name="co_mrk" class="form-control form-control-lg" id="colFormLabelSm" placeholder="">
</div>
</div>
<hr>
</div>
<hr><div class="form-group row">
<div class="col-sm-6">
<h4>DMS</h4>
</div>
<div class="col-sm-6">
<input type="text" name="dms_mrk" class="form-control form-control-lg" id="colFormLabelSm" placeholder="">
</div>
</div>
<hr>
</div>
<hr>
<div class="form-group row">
<div class="col-sm-6">
<h4>Math</h4>
</div>
<div class="col-sm-6">
<input type="text" name="math_mrk" class="form-control form-control-lg" id="colFormLabelSm" placeholder="">
</div>
</div>
<hr>
</div>
<hr>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF" crossorigin="anonymous"></script>
</body>
</html>