-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
117 lines (102 loc) · 3.59 KB
/
index.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
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module">
import "https://cdn.jsdelivr.net/npm/@pwabuilder/pwaupdate";
const el = document.createElement("pwa-update");
document.body.appendChild(el);
</script>
<meta
name="google-site-verification"
content="KkGKZ_ByEh3gS5-RQsZbo35Egf7tYYlzPpT85pn1pDw"
/>
<meta content="text/html" charset="utf-8" http-equiv="Content-Type" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no, maximum-scale=1, minimum-scale=1"
/>
<!-- Basic Meta-Tags -->
<meta
name="description"
content="A simple and easy way to calculate Grade Point Average (GPA) for the marks you have scored in Visvesvaraya Technological University."
/>
<meta name="keywords" content="VTU, Engineering, Bangalore" />
<meta name="classification" content="Educational" />
<meta name="distribution" content="global" />
<meta name="author" content="Vivek Mishra" />
<meta name="theme-color" content="#060606" />
<title>VTU SGPA/CGPA Calculator</title>
<!-- Google / Search Engine Tags -->
<meta itemprop="image" content="/images/main-logo.png" />
<!-- Site Name, Title, and Description to be displayed -->
<meta property="og:title" content="VTU GPA Calculator / Home" />
<meta property="og:url" content="https://vtu-gpa.netlify.app" />
<meta property="og:image" content="/images/main-logo.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:type" content="website" />
<meta property="og:image:width" content="583" />
<meta property="og:image:height" content="583" />
<meta
property="og:description"
content="A simple and easy way to calculate GPA for VTU students."
/>
<link rel="manifest" href="/manifest.json" />
<link rel="apple-touch-icon" href="/images/apple-icon.png" />
<link
rel="shortcut icon"
href="/images/main-logo.png"
type="image/x-icon"
/>
<link rel="icon" href="/images/main-logo.png" type="image/x-icon" />
<link rel="stylesheet" href="/css/bootstrap.min.css" />
<link rel="stylesheet" href="/css/style.css" />
<style>
.main-bg {
padding: 20% 5% 0% 5%;
line-height: 2;
font-family: "Roboto Mono", monospace;
}
</style>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-133160807-5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-133160807-5");
</script>
</head>
<body>
<div class="container">
<div class="main-bg">
<h4 class="pb-4">VTU SGPA/CGPA Calculator.</h4>
<p class="display-5 pb-3">
A simple and easy way to calculate Grade Point Average (GPA) for the
marks you have scored in Visvesvaraya Technological University. You
have to input marks according to the credits they carry, and a final
calculated GPA will be provided.
</p>
<a
class="btn btn-outline-primary btn-lg mb-4"
role="button"
href="/html/sgpa.htm"
>Calculate SGPA</a
>
<a
class="btn btn-outline-primary btn-lg mb-4"
role="button"
href="/html/cgpa.htm"
>Calculate CGPA</a
>
<p style="color: #696969">
Improve this site on
<a href="https://github.com/iamvkm/vtu-gpa">GitHub</a>
</p>
</div>
</div>
</body>
</html>