frontend-js-example/index.html

18 lines
544 B
HTML
Raw Normal View History

2024-03-31 15:05:36 -05:00
<!DOCTYPE html>
<html>
<head>
<title>FrontendJS Example</title>
</head>
<body>
2024-03-31 15:08:42 -05:00
<script src="frontend.js"></script>
2024-03-31 15:05:36 -05:00
<script>
clearPage()
let firstH1 = createElement("h1", "h1-1")
writeText("h1-1", "Hello, world")
createParagraph("paragraph1", `This is an example of how to properly use Frontend JS.
Also it's a test if things are working.`)
let dino = createButton("dino", "dino sound")
changeAttributes(dino, {"onclick": "playAudio(`https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3`, 0.4)"})
</script>
</body>
</html>