StreamAI / index.html
privateuserh's picture
Update index.html
cd7b2c0 verified
raw
history blame
771 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StreamAI - DEBUGGING</title>
<script>
alert("Step 1: The index.html file is loading!");
</script>
<link rel="stylesheet" href="styles/main.css" onerror="alert('ERROR: Could not find main.css! Check path.');">
</head>
<body>
<h1>StreamAI Debugging Page</h1>
<p>This is a test to see if files are loading correctly.</p>
<p>Please report which alerts you see.</p>
<script
src="scripts/app.js"
type="module"
onerror="alert('Step 2 ERROR: Could not load app.js! Check the file path in the Hugging Face repo.');">
</script>
</body>
</html>