mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-18 06:17:21 +00:00
28 lines
No EOL
648 B
HTML
28 lines
No EOL
648 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test Page</title>
|
|
<style>
|
|
body {
|
|
background-color: #00FF00; /* Bright Green */
|
|
color: black;
|
|
font-size: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>TEST FILE LOADED</h1>
|
|
<p>If you see this, file access is working.</p>
|
|
</div>
|
|
<script>
|
|
console.log("Test file loaded successfully");
|
|
document.body.style.backgroundColor = "#00FF00";
|
|
</script>
|
|
</body>
|
|
</html> |