-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
49 lines (48 loc) · 1.52 KB
/
404.html
File metadata and controls
49 lines (48 loc) · 1.52 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
<!Doctype html>
<html lang="en">
<head id="head">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://locushealth.github.io/js/notfound.js" defer ></script>
<title>LOCUS HEALTH - Error</title>
<link rel="stylesheet" href="https://locushealth.github.io/styles/style.css"/>
<link rel="stylesheet" href="https://locushealth.github.io/styles/404.css"/>
<style>
#oops{
background: url("https://locushealth.github.io/img/7.png") no-repeat;
font-size: 15vw;
font-weight: 900;
margin: 50px;
color: white;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body onload="loadfunc()">
<div id="loader-wrapper">
<div id="dots">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<p>Loading...</p>
</div>
<div id="main-content">
<div>
<p id="oops">Oops !!</p>
<div style="font-size: 4vw;">
The page you are looking for does not exist.<br>
<a href="https://locushealth.github.io/"><button> Go Back To Homepage </button></a>
</div>
</div>
<div id="footer-container">
<footer id="mainfooter">
<a><p>Designed and Developed By - <a target="_blank" href="https://github.com/keshav-bajaj">Keshav Bajaj</a> </p></a>
</footer>
</div>
</div>
</body>
</html>