【Java script問題集】1-1 ブラウザにアラートを表示してみよう

<!DOCTYPE html>
<html lang = "ja">
  <head>
    <title>1-1</title>
  </head>
  <body>
    <script>
      alert('hello world');
    </script>
  </body>
</html>

実行結果

f:id:mkyosuke:20200629120834p:plain