-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (103 loc) · 3.64 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
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
<!doctype html>
<html>
<head>
<title>MU Pointer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="MU Pointer CGPA SGPA Mumbai University Engineering">
<meta name="description" content="Calculate your Pointer (SGPA and CGPA) with different combinations of marks obtained in theory, practical and term work. You can also export it as Excel Sheet for future reference (from Desktop only). Have a great day!">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body class="noselect">
<div id="Caption"><a href="../../">MU Pointer</a><h3>Welcome to MU Pointer!</h3>
</div>
<div id="Container">
<div class="Heading" style="max-width:450px; width:auto; text-align:justify;">
Calculate your Pointer (SGPA and CGPA) with different combinations of marks obtained in theory, practical and term work. You can also export it as Excel Sheet for future reference (from Desktop only). Have a great day!</div><br />
Please select Semester for Pointer Calculation:<br /><br />
<form onSubmit="return redirect()">
<table style="width:230px; margin:auto; border-collapse:collapse;" border="0">
<tr>
<td align="right"><label>Pointer:</label></td>
<td align="left">
<select id="gp" onChange="selectsem()">
<option>SGPA</option>
<option>CGPA</option>
</select>
</td>
</tr>
<tr>
<td width="60px" align="right"><label>Course:</label></td>
<td width="165px" align="left">
<select id="cs">
<option>Engineering</option>
</select>
</td>
</tr>
<tr id="yrtr">
<td align="right"><label>Year:</label></td>
<td align="left">
<select id="yr" onChange="selectsem()">
<option>First Year(FE)</option>
<option>Second Year(SE)</option>
<option>Third Year(TE)</option>
<option>Fourth Year(BE)</option>
</select>
</td>
</tr>
<tr>
<td align="right"><label>Branch:</label></td>
<td align="left">
<select id="br">
<option>Common to all</option>
</select>
</td>
</tr>
<tr id="smtr">
<td align="right"><label>Sem:</label></td>
<td align="left">
<select id="sm">
<option>I</option>
<option>II</option>
</select>
</td>
</tr>
</table><br />
<input type="submit" value="Submit" />
</form>
</div>
<br />
<div class="Heading">
<div id="lastup"></div>
<a target="_blank" href="mailto:sspathare97@gmail.com?Subject=Bugs%20in%20MU%20Pointer">Report Bugs</a>
<br /><br />
<div class="section">
<a target="_blank" href="http://www.copyrighted.com/copyrights/view/pxh9-cw02-ogrq-xetv"><img class="Heading" border="0" alt="Copyrighted.com Registered & Protected
PXH9-CW02-OGRQ-XETV" title="Copyrighted.com Registered & Protected
PXH9-CW02-OGRQ-XETV" width="150" height="40" src="http://static.copyrighted.com/images/seal.gif" /></a>
</div><br />
<div class="section">Designed and Developed by
<br /><a target="_blank" href="mailto:sspathare97@gmail.com">Sagar Pathare</a><br /><br />All Rights Reserved.
</div>
</div>
<script src="lm.js"></script>
<script>
document.getElementById("lastup").innerHTML=lm;
document.getElementById("yr").selectedIndex="0";
document.getElementById("br").selectedIndex="0";
document.getElementById("sm").selectedIndex="0";
var relpath="";
document.getElementById("ch").setAttribute("href","changelog.html");
document.getElementById("ch").setAttribute("target","_blank");
</script>
<script src="semlist.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-79588896-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>