Your IP : 216.73.216.165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page Not Found</title>
<style>
.errorbox {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
align-content: center;
height: 100vh;
}
button {
background-color: #fa8c1b;
color: #fff;
font-size: 20px;
border: none;
padding: 14px 20px;
border-radius: 5px;
cursor: pointer;
}
img {
width: 30vw;
margin-bottom: 20px;
}
.nikitha-btn {
color: red;
margin-top: 10px;
font-size: 18px;
}
</style>
</head>
<body>
<div class="errorbox">
<img src="https://sonalisharma.co.in/img/404.png" alt="not-found">
<button onclick="window.history.back()">Go Back</button>
<a href="https://sonalisharma.co.in" class="nikitha-btn" >Back to Home</a>
</div>
</body>
</html>