-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
184 lines (170 loc) · 5.46 KB
/
index.html
File metadata and controls
184 lines (170 loc) · 5.46 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Diploma CGPA and Grade Calculator</title>
<!-- Google Font -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
rel="stylesheet"
/>
<!-- Main CSS -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Project Info Start -->
<div class="project-info">
<div class="container">
<h1>CGPA Calculator</h1>
<p>
Calculate your final CGPA and grade according to any BTEB diploma
regulations. You will also get your grade of each semester.
</p>
</div>
</div>
<!-- Project Info End -->
<!-- Main Calculator Area Start -->
<div class="calculator container">
<!-- //Calculator Options -->
<div class="calculator-options">
<h3>Probidhan</h3>
<button class="active btn" id="probidhan_2022">2022</button>
<button id="probidhan_2016">2016</button>
<button id="probidhan_2010 btn">2010</button>
<!-- <button id="probidhan_2005 btn">2005</button> -->
</div>
<!-- //Calculator Body -->
<div class="calculator-body">
<form>
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_1">1st Semester</label>
<input type="text" id="sem_1" />
<input
disabled
id="sem_1_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_2">2nd Semester</label>
<input type="text" id="sem_2" />
<input
disabled
id="sem_2_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_3">3rd Semester</label>
<input type="text" id="sem_3" />
<input
disabled
id="sem_3_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_4">4th Semester</label>
<input type="text" id="sem_4" />
<input
disabled
id="sem_4_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_5">5th Semester</label>
<input type="text" id="sem_5" />
<input
disabled
id="sem_5_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_6">6th Semester</label>
<input type="text" id="sem_6" />
<input
disabled
id="sem_6_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_7">7th Semester</label>
<input type="text" id="sem_7" />
<input
disabled
id="sem_7_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
<!-- Single Input Start -->
<div class="calculator-input">
<label for="sem_8">8th Semester</label>
<input type="text" id="sem_8" />
<input
disabled
id="sem_8_grade"
class="show-semester-grade"
value="?"
type="text"
/>
</div>
<!-- Single Input End -->
</form>
<!-- // Calculator Result -->
<div class="calculator-result">
<h3>
Final CGPA : <span class="final_cgpa"> ? </span> , GRADE :
<span class="final_grade"> ? </span>
</h3>
</div>
<!-- // Calculator Result End -->
<!-- Calculator Buttons Start -->
<div class="calculator-buttons">
<button type="button" class="print">Print</button>
<button type="button" class="clear">Clear</button>
</div>
<!-- Calculator Buttons End -->
</div>
</div>
<!-- Main Calculator Area End -->
<footer>
BTEB CGPA Calculator © <span id="current_year"></span> | Developed By
<a href="https://github.com/solaimanislam514" target="_blank">MD. Solaiman Islam</a>
</footer>
<!-- **** Java Script ***** -->
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>