Newer
Older
2024-C1231033-fuma / hello.html
@c123103 c123103 on 27 Sep 2024 459 bytes hello.htmlを追加する
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Hello!</title>
</head>
<body>
<h1>はろーわーるど</h1>
<script type="text/javascript" charset="utf-8">
<!--
// その1: HTML本文中に出力する
document.write("Hello, world!(1)");
// その2: ブラウザコンソールに出力する
console.log("Hello, world!(2)");
// その3: 警告ウィンドウに出力する
alert("Hello, world!(3)");
// -->
</script>

</body>
</html>