style(crazyspace.html): remove unnecessary attributes from iframe for cleaner code
All checks were successful
DEPLOY / deploy (push) Successful in 9s

style(pong.html): update script tag to remove deprecated language attribute for better HTML compliance
This commit is contained in:
Djalim Simaila 2025-02-23 20:16:02 +01:00
parent ea9feb9150
commit 33b1bde178
2 changed files with 1 additions and 4 deletions

View File

@ -71,11 +71,8 @@
<iframe
src="https://scratch.mit.edu/projects/1137857711/embed"
style="border-radius: 10px"
allowtransparency="true"
width="485"
height="402"
frameborder="0"
scrolling="no"
allowfullscreen
></iframe>
</main>

View File

@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<link rel="stylesheet" href="/static/style.css" />
<script src="/static/js/utils.js" defer></script>
<script language="javascript" defer>
<script>
function getSinus(angle) {
return Math.sin(angle);
}