Files
Todd 0d7b2b1aab Initial commit
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-29 22:42:55 -04:00

22 lines
602 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
<style>
body { background: white; padding: 50px; font-family: Arial; }
.box { border: 2px solid red; padding: 20px; background: yellow; }
</style>
</head>
<body>
<div class="box">
<h1>TEST PAGE - CAN YOU SEE THIS?</h1>
<p>If you see this, HTML/CSS works</p>
<button onclick="alert('JavaScript works!')">Click to test JS</button>
</div>
<script>
console.log('TEST: JavaScript is loading')
document.body.style.border = '10px solid green';
</script>
</body>
</html>