-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (57 loc) · 2.08 KB
/
index.html
File metadata and controls
60 lines (57 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/ignou.ico" />
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500;700;800&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#F7FCFF" />
<link rel="apple-touch-icon" href="/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/public/manifest.json" />
<!-- Essential META Tags -->
<meta property="og:title" content="BCSP-064 | Mock Test Conducting System">
<meta property="og:type" content="article" />
<meta property="og:image" content="/OG-IMAGE.jpg" />
<meta property="og:url" content="https://fraise.netlify.app">
<meta name="twitter:card" content="summary_large_image">
<!-- Non-Essential, But Recommended -->
<meta property="og:description" content="Mock Test Conducting System for teachers and Students. An IGNOU BCA Final Year Project by github.com/suyious">
<meta property="og:site_name" content="BCSP-064">
<meta name="twitter:image:alt" content="A Logo of IGNOU">
<!-- Non-Essential, But Required for Analytics -->
<meta property="fb:app_id" content="bcsp064" />
<meta name="twitter:site" content="@bcsp064">
<title>BCSP-064 | Mock Test Conducting System</title>
</head>
<style>
body {
background: #F7FCFF;
}
.root_splash {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: fade-in 500ms ease-in;
}
@keyframes fade-in {
0% {
opacity: 0;
} 100% {
opacity: 1;
}
}
</style>
<body>
<div id="root">
<div class="root_splash">
<img src="/favicon.png" alt="BCSP064">
</div>
</div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>