20250605
<!DOCTYPE html>
<html>
<head>
<title>JavaScriptのテスト</title>
</head>
<body>
<h1>JavaScriptを試しみよう !</h1>
<script>
console.log(“HELLO、JavaScript !”);
alert(“JavaScriptがSTARTED!”);
</script>
</body>
</html>
I got a basic understand HTML and how it works with JavaScript.HTML is used to create the structure of webpage, while JavaScript makes it interactive. So I can use javascript to change HTML content , style element, respond to user action and create fantastic web experience.