- Added various icon images (128x128, 16x16, 32x32, 48x48, 64x64, 76x76 PNGs). - Introduced logo images in JPG and PNG formats, along with an SVG version. - Created device XML file for UPnP compatibility. - Implemented custom 404 and 405 error pages with a Commodore 64 theme. - Added an SVG graphic for server error representation. - Developed CSS styles for error pages to enhance visual appeal. - Included a favicon cursor icon. - Added a font file for "Microgramma D Extended Bold". - Created a WebSocket test page with interactive command execution.
24 lines
807 B
HTML
24 lines
807 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Commodore 64 Boot Screen</title>
|
|
<link rel="stylesheet" href="error/styles.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="boot-screen">
|
|
<h1>**** MEATLOAF 64 BASIC V2 ****</h1>
|
|
<h1>64K RAM SYSTEM 38911 BASIC BYTES FREE</h1>
|
|
<p>?SERVER 404 ERROR</p>
|
|
<p>READY.</p>
|
|
<p>USE JOYSTICK IN PORT 2 TO SELECT</p>
|
|
<div class="help-actions">
|
|
<a href="javascript:location.reload();">RELOAD PAGE</a>
|
|
<a href="javascript:history.back();">BACK TO PREVIOUS</a>
|
|
<a href="/">HOME PAGE</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |