Skip to content

Commit a236dc8

Browse files
committed
Add a JavaScript 'hello, world'
1 parent 9559184 commit a236dc8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Learn Enough JavaScript</title>
5+
<meta charset="utf-8">
6+
<script>
7+
alert("hello, world!");
8+
</script>
9+
10+
</head>
11+
<body>
12+
<h1>Hello, world!</h1>
13+
<p>This page includes an alert written in JavaScript.</p>
14+
</body>
15+
</html>

0 commit comments

Comments
 (0)