fix: last Project

This commit is contained in:
chocomett 2025-12-15 19:01:14 +07:00
parent 550cfea087
commit be5bde9268
3 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -7,12 +8,20 @@
<link rel="stylesheet" href="/css/global.css"> <link rel="stylesheet" href="/css/global.css">
<link rel="stylesheet" href="/css/game.css"> <link rel="stylesheet" href="/css/game.css">
</head> </head>
<body> <body>
<div class="container-load"> <div class="container-load">
<p id="wellcome-message" class="anm" ><span style="color: yellow; font-size: 40px;">Welcome to the Python Quiz!</span><br>Youll face multiple-choice questions designed to test your logic and Python skills. <br>Lets see how well you can outsmart the code!</p> <p id="wellcome-message" class="anm"><span style="color: yellow; font-size: 40px;">Welcome to the Python
Quiz!</span><br>Youll face multiple-choice questions designed to test your logic and Python skills.
<br>Lets see how well you can outsmart the code!</p>
<img id="hero" class="hero" src="/assets/Design/KNIGHTPIXLETPP.gif" alt=""> <img id="hero" class="hero" src="/assets/Design/KNIGHTPIXLETPP.gif" alt="">
<img class="bg" src="/assets/Design/LOADSCREEN.gif" alt=""> <img class="bg" src="/assets/Design/LOADSCREEN.gif" alt="">
</div> </div>
<script src="/js/load.js"></script> <script>
setTimeout(() => {
window.location.href = "/game/firstperson.html"
}, 5000)
</script>
</body> </body>
</html> </html>

View File

@ -1,3 +0,0 @@
setTimeout(()=> {
window.location.href = "/game/firstperson.html"
}, 5000)

View File