-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
82 lines (82 loc) · 1.8 KB
/
error.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>error page</title>
<style>
body {
text-align: center;
padding: 0;
margin: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
font-weight: bold;
font-size: 16px;
transition: color 0.3s ease-in-out;
}
button {
padding: 4px;
background-color: aqua;
width: 150px;
height: 40px;
border-radius: 8px;
border: none;
margin-bottom: 20px;
}
nav {
display: inline-flex;
border-radius: 20px;
border: 1px solid aquamarine;
padding: 10px;
}
ul {
list-style-type: none;
display: flex;
}
li {
margin-right: 20px;
}
a:hover {
color: #ffd700; /* Change to your preferred hover color */
}
footer {
background-color: #0f6423;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
.main_cont {
height: auto;
width: 100%;
margin: 20px 0 50px 0;
}
</style>
</head>
<body>
<nav>
<img src="assets/images/logo.png" alt="college logo" width="80px">
<ul>
<li><a href="main.html">MAIN</a></li>
<li><a href="insert.html">INSERT</a></li>
<li><a href="view.html">VIEW</a></li>
<li><a href="delete.html">DELETE</a></li>
<li><a href="update.html">UPDATE</a></li>
<li><a href="info.html">INFO</a></li>
</ul>
</nav>
<div class="main_cont">
<img src="assets/images/oops-image.png" alt="oops photo">
<h2>Sorry, an error occured 😭</h2>
<button type="button"><a href="main.html">GO TO HOME</a></button>
</div>
<footer>
© 2024 KIIT University
</footer>
</body>
</html>