-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (65 loc) · 1.73 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/heart.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@500;700;800&display=swap" rel="stylesheet">
<meta name="keywords" content="Ambuvians, Healthcare, 24/7 Support, Healthcare, Ambulances, BLS, ALS, PTS, MA, Emergency">
<title>Ambuvians</title>
<style>
.preload-wrapper {
width: 100vw;
height: 100vh;
position: fixed;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
}
.preload-img {
animation: scaleInOut 2.5s infinite cubic-bezier(.17,.67,.83,.67);
max-width: 250px;
}
.preload-img > img {
width: 100%;
}
@keyframes scaleInOut {
0% {
transform: scale(1);
opacity: 0.7;
}
50% {
transform: scale(1.075);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.7;
}
}
@media only screen and (max-width: 600px) {
.preload-img {
max-width: 150px;
}
}
</style>
</head>
<body>
<div id="root">
<div class="preload-wrapper">
<div class="preload-img">
<img
src="public/heart.png"
alt=""
/>
</div>
</div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>