Week 4 Sec 1 – 1 (Branch 1098)
✨ Ninninninnin Kiki
<html> <head> <title>Let's Start</title> <style> body{ background:#eee; margin:1em; font-family:sans-serif; } </style> </head> <body> <h1> Hello <span id="username">Guest</span> 😎 </h1> <input value="Jabont" id="input_username"> <button onclick="show()"> OK Go Go </button> <script> function show(){ let user = input_username.value; } </script> </body> </html>