forked from wec-tech-app2019/learning-javascript-01
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 924 Bytes
/
index.html
File metadata and controls
30 lines (24 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>テクノロジー(藤原)JavaScript練習用ページ</title>
</head>
<body>
<h1>テクノロジー(藤原)JavaScript練習用ページ</h1>
<!-- 外部ファイルのJavaScript(js/main.js)を読み込む -->
<script src="js/main.js"></script>
<!-- JavaScriptをHTMLに直接書く -->
<script>
// ここにJavaScriptコードを書く
console.log("おはよう!");
window.alert("こんにちは!");
</script>
<!-- 以下は触らない(タブを閉じるときに警告を出すためのコード) -->
<script>
window.addEventListener('beforeunload', function(e) {
e.returnValue = 'タブを閉じるとConsoleのログが消えます。閉じたい場合はConsoleのログをコピーしておいてください。';
}, false);
</script>
</body>
</html>