-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (76 loc) · 2.29 KB
/
index.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CGPA to Percentage Convertor</title>
<meta name="description" content="CGPA to Percentage Convertor">
<meta name="keywords" content="SPPU, DPU, CGPA, Percentage, Grade">
<meta name="author" content="Zaosh Damania">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="wrapper">
<div class="topbox">
<div class="imagediv">
<a href="https://www.avcoe.org/" target="_blank" title="">
<img src = "avcoe-engineering-logo.webp" id="college_logo" alt="DPU">
</a>
</div>
<div class="namediv">
<a href="https://www.avcoe.org/" target="_blank" title="">
Amrutvahini College Of Engineering, Sangamner
</a>
</div>
<!-- <div class="deptdiv">Examination Department</div> -->
</div>
<div class="mainbox">
<div class="title">CGPA to Percentage Convertor</div>
<div class="input_row">
<div class="input_label">
Enter CGPA:
</div>
<div class="input_box">
<input id="cgpa_input" type="number" min="0.00" max="10.00" step="0.01">
</div>
<div class="input_button">
<button id="convert_btn" type="button" onclick="convertCGPA()">Convert</button>
</div>
</div>
<div id="error_msg"></div>
<div class="output_table">
<table id="opTable">
<tr>
<td class="col1">CGPA</td>
<td id="op_cgpa">-</td>
</tr>
<tr>
<td class="col1">Grade</td>
<td id="op_grade">-</td>
</tr>
<tr>
<td class="col1">Percentage</td>
<td id="op_per">-</td>
</tr>
<tr>
<td class="col1">Class</td>
<td id="op_class">-</td>
</tr>
</table>
</div>
<div class="download_button">
<button onclick="exportTableToExcel('opTable')">Download as Excel File</button>
</div>
</div>
<div class="bottombox">
<div class="note">
Note: This conversion is based on SPPU FE 2019 rulebook and circular no. 322/2020
</div>
</div>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>