Shark Calculator
unknown
red
a year ago
577 B
4
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...