File size: 771 Bytes
f52dfb4
 
 
 
 
cd7b2c0
7e0de30
cd7b2c0
 
 
7e0de30
cd7b2c0
553afd6
cd7b2c0
 
 
 
 
cd8ef8b
cd7b2c0
 
 
 
 
6a27c33
f52dfb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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>