Shark Calculator
unknown
red
2 years ago
577 B
7
Indexable
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url('shark_wallpaper.jpg');
background-size: cover;
}
.calculator {
width: 300px;
height: 400px;
background-color: black;
color: white;
margin: 0 auto;
padding: 20px;
}
.calculator a {
color: white;
text-decoration: none;
}
.calculator a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="calculator">
<!-- Calculator HTML code here -->
</div>
<a href="https://calculator.academy">Powered By Calculator Academy</a>
</body>
</html>Editor is loading...