Newer
Older
2021-AkakiRina / hello.html
@AKAKI Rina AKAKI Rina on 8 Oct 2021 474 bytes cahnged
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Hello!</title>
</head>
<body>
<h1>はろーわーるど</h1>
<script type="text/javascript" src="hello.js" charset="utf-8">
<!--
// その1: HTML本文中に出力する
document.write("Hello, world!(1)");
// その2: ブラウザコンソールに出力する
console.log("Hello, world!(2)");
// その3: 警告ウィンドウに出力する
alert("Hello, world!(3)");
// -->
</script>

</body>
</html>