summaryrefslogtreecommitdiff
path: root/javascript/01-console-print/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/01-console-print/index.html')
-rw-r--r--javascript/01-console-print/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/javascript/01-console-print/index.html b/javascript/01-console-print/index.html
new file mode 100644
index 0000000..2b8156a
--- /dev/null
+++ b/javascript/01-console-print/index.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title>Page Title</title>
+</head>
+
+<body>
+ <p>Hello world!</p>
+
+ <script>
+ // This is a simple comment explaining the code
+ console.log("Hello, World!");
+ </script>
+</body>
+
+</html>