Week 4 Sec 1 – 1 (Copy 976)
✨ elzaphaN TV
<html> <head> <title>Let's Start</title> <style> body{ background:#eee; margin:1em; font-family:sans-serif; } </style> </head> <body> <h1> Let's Start 😎 </h1> <button onclick="test()"> OK Go Go </button> <script> function test(){ document.querySelector("h1").innerText = "SS'PIM"; } </script> </body> </html>