-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
104 lines (100 loc) · 3.58 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>santosh magar</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="https://santoshmagar.com.np/assets/images/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- custooom css -->
<link rel="stylesheet" type="text/css" href="https://santoshmagar.com.np/assets/css/santosh-magar.css">
<!-- icon -->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!-- jquery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body id="home">
<!-- ------nav header--------- -->
<nav class="header-nav">
<div class="container">
<div class="header-combine">
<div class="right-header">
<a href="/">
<img id="site-logo" src="https://santoshmagar.com.np/assets/images/logo-stmp-001.png" alt="logo">
</a>
</div>
<div class="left-header">
<div class="main-navigation-list">
<ul>
<li>
<a href="#home"> Home</a>
</li>
<li>
<a href="#about"> About</a>
</li>
<li>
<a href="#contact"> Contact </a>
</li>
</ul>
</div>
<div class="ham-navigation-list">
<img class="ham" src="https://santoshmagar.com.np/assets/icon/menu-line.svg">
</div>
</div>
</div>
<ul class="ham-list">
<a href="#home"> <li> Home <i class="ri-arrow-right-line"></i> </li> </a>
<a href="#about"> <li> About <i class="ri-arrow-right-line"></i> </li></a>
<a href="#contact"> <li> Contact <i class="ri-arrow-right-line"></i> </li> </a>
</ul>
</div>
</nav>
<div id="main">
<!-- 404 error -->
<section class="intro-section container">
<div class="error-404">
<p>The Page was not found.</p>
<p><a href="/">RETURN BACK</a></p>
</div>
</section>
<!-- -------footer content------- -->
<footer class="footer-main">
<div class="container">
<p class="cc-footer">
<marquee direction="right">© Copyrights 2021. All rights reserved. santoshmagar</marquee>
</p>
</div>
</footer>
</div>
<!-- ----------------custom js call------------ -->
<script type="text/javascript" >
let site_logo=document.getElementById('site-logo');
let logos=['logo-stmp-001.png','logo-stmp-002.png','logo-stmp-003.png','logo-stmp-004.png'];
var x = -1;
setInterval(function () {
x = (x === logos.length - 1) ? 0 : x + 1;
site_logo.src='https://santoshmagar.com.np/assets/images/'.concat(logos[x])
},2000);
// ---------------------------------------------------
$(".header-nav").each(function(){
var toggleUD = $(this).find('.ham-list');
toggleUD.addClass("ham-hide");
$(this).find('.ham').click(function(){
toggleUD.toggleClass("ham-hide");
})
});
$(".ham-list li").click(function(){
$(".ham-list").addClass("ham-hide");
});
</script>
</body>
</html>