NXInspired/single-button.html
mctaylors c0955b4fdf
Add single-button.html
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
2024-05-02 20:25:28 +05:00

26 lines
No EOL
837 B
HTML

<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<title>NXInspired</title>
<link rel="stylesheet" href="/assets/css/style.css" />
<script type="text/javascript" src="/assets/js/main.js"></script>
<audio id="click" src="/assets/wav/click.wav"></audio>
<audio id="error" src="/assets/wav/error.wav"></audio>
</head>
<body>
<div class="background-image"></div>
<div class="dialog">
<p class="error-code">
Error Code: 404
</p>
<div class="description">
<p>Not Found.</p>
<p>Server cannot find the requested resource. Make sure the link is spelled correctly.</p>
</div>
<button onclick="close_button('https://github.com/mctaylors/NXInspired')">
<span>Close</span>
</button>
</div>
</body>
</html>