about.
I'm a front-end developer based on DKI Jakarta, Indonesia.
Since 2022 I've known programs to explore HTML, CSS, and Javascript. I focused on studying at the Dumbways.id bootcamp. I currently work as a frontend developer at studioalva.co.
Random facts
I like to drink milk tea
I'm interested in a challenge
My hobby to play Basketball
I like to work flexibility
I want to live in Japan
I like to take time to study and read
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>My Website</title> </head> <body> <h1>Hello, World!</h1> <button onclick="showAlert()">Click me</button> <script> function showAlert() { alert("Hello, world!"); } </script> </body> </html>