-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
49 lines (43 loc) · 1.42 KB
/
404.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
<!DOCTYPE html>
<html lang="eng">
<head>
<title>Team RAM</title>
<link rel="icon" href="assets/favicon.ico">
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<!-- //Meta tag Keywords -->
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- Custom-Files -->
<link rel="stylesheet" href="assets/css/bootstrap.css">
<!-- Bootstrap-Core-CSS -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css" media="all"/>
<!-- Style-CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Font-Awesome-Icons-CSS -->
<!-- //Custom-Files -->
<!-- Web-Fonts -->
<link href="//fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext"
rel="stylesheet">
<!-- //Web-Fonts -->
</head>
<body>
<!-- 404 -->
<div class="error pb-5 pt-2 text-center" id="price">
<div class="container pb-xl-5 pb-lg-3">
<img src="assets/images/error.png" alt="" class="img-fluid" />
<h3 class="title-w3 text-bl my-3 font-weight-bold text-capitalize">Oops! This page can’t be found.</h3>
<p class="sub-tittle text-center4"></p>
<a href="index.html" class="btn button-style mt-5">Back To Home</a>
</div>
</div>
<!-- //404 -->
</body>
</html>