-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (109 loc) · 3.96 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
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<!--
If you are serving your web app in a path other than the root, change the
href value below to reflect the base path you are serving from.
The path provided below has to start and end with a slash "/" in order for
it to work correctly.
For more details:
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
This is a placeholder for base href that will be replaced by the value of
the `--base-href` argument provided to `flutter build`.
-->
<base href="/">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="Sai Rajendra Immadi">
<html prefix="og: http://ogp.me/ns#">
<meta property="og:url" content="https://immadisairaj.github.io/" />
<meta property="og:image" content="logo.png" />
<meta property="og:title" content="immadisairaj" />
<meta property="og:description"
content="To know about Sai Rajendra Immadi and to experience some cool animations, visit the website he made!!" />
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="website">
<link rel="apple-touch-icon" href="logo.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="logo.png"/>
<!-- The Following is for Google Analytics -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- Replace UA-XXXXXXXXX-X with Google Analytics ID -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-168944360-2"></script>
<!-- GA 4 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3DX3BMFPGD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// // Replace UA-XXXXXXXXX-X with Google Analytics ID
// gtag('config', 'UA-168944360-2');
gtag('config', 'UA-168944360-2', { send_page_view: false });
// GA4
gtag('config', 'G-3DX3BMFPGD', { send_page_view: false });
</script>
<title>Sai Rajendra Immadi</title>
<link rel="manifest" href="manifest.json">
<script src="app.js" defer></script>
<script type="text/javascript" defer>window.$crisp=[];window.CRISP_WEBSITE_ID="de6b9fb8-891a-442a-a5a6-2f4a09b750ba";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
</head>
<body>
<!-- background color -->
<style>
body{
background-color: #194D54;
}
</style>
<div id="loading">
<style>
body {
inset: 0; overflow: hidden;
margin: 0; padding: 0;
position: fixed;
}
#loading {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
width: 100%;
}
#loading .loader{
border: 16px solid #f3f3f3;
border-top: 16px solid cyan;
border-bottom: 16px solid cyan;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
opacity: 0.8;
}
#loading.main_done .loader {
opacity: 1;
border-right: 16px solid cyan;
border-left: 16px solid cyan;
}
#loading.init_done .loader {
animation: .33s ease-in-out 0s 1 forwards zooooom;
opacity: 0.5;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes zooooom {
from { transform: scale(1) }
to { transform: scale(10)}
}
</style>
<div class="loader"></div>
</div>
<script src="flutter_bootstrap.js" async defer></script>
</body>
</html>