-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (107 loc) Β· 4.11 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
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Adsense link -->
<meta name="google-adsense-account" content="ca-pub-2873043143634833" />
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2873043143634833"
crossorigin="anonymous"
></script>
<!-- if user Blocks Ad -->
<script
async
src="https://fundingchoicesmessages.google.com/i/pub-2873043143634833?ers=1"
nonce="mQNh2AuWjjzaVy3OqfjziQ"
></script>
<script nonce="mQNh2AuWjjzaVy3OqfjziQ">
(function () {
function signalGooglefcPresent() {
if (!window.frames["googlefcPresent"]) {
if (document.body) {
const iframe = document.createElement("iframe");
iframe.style =
"width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;";
iframe.style.display = "none";
iframe.name = "googlefcPresent";
document.body.appendChild(iframe);
} else {
setTimeout(signalGooglefcPresent, 0);
}
}
}
signalGooglefcPresent();
})();
</script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-7RX6XQG3YH"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-7RX6XQG3YH");
</script>
<!-- Bing Indexing code -->
<meta name="msvalidate.01" content="738269C74AC4059643482D7519BA1027" />
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=5.0"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="robots" content="index, follow" />
<!-- Primary Meta Tags -->
<title>GradeGenie - GPA, CGPA, and SGPA Calculator Online</title>
<meta
name="description"
content="Calculate your GPA, CGPA, and SGPA online with GradeGenie. Track your academic performance, add assessments, and monitor progress. Free, easy to use, and accurate!"
/>
<meta
name="keywords"
content="GPA Calculator, CGPA Calculator, SGPA to Percentage, Online GPA Tool, Academic Grade Calculator, SGPA to GPA, University Grade Converter"
/>
<meta name="author" content="GradeGenie" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:title"
content="GradeGenie - GPA, CGPA, and SGPA Calculator Online"
/>
<meta
property="og:description"
content="Track your GPA and SGPA easily with GradeGenie. Add subjects, manage assessments, and monitor academic performance."
/>
<meta property="og:image" content="/preview.png" />
<meta property="og:url" content="https://gradegenie.site" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GradeGenie - GPA and SGPA Calculator" />
<meta
name="twitter:description"
content="GradeGenie offers the most accurate GPA and SGPA calculator online. Simplify your academic tracking today!"
/>
<meta name="twitter:image" content="/preview.png" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/logo.png" />
<!-- Performance Optimizations -->
<link rel="preload" as="script" href="/src/main.jsx" />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<meta name="theme-color" content="#4F46E5" />
<meta name="msapplication-TileColor" content="#4F46E5" />
<meta name="apple-mobile-web-app-status-bar-style" content="#4F46E5" />
<!-- Accessibility -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telephone=no" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>