21
web/frontend/test.html
Normal file
21
web/frontend/test.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user