diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-06-27 19:30:40 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-06-27 19:30:40 +0530 |
| commit | d678dd98e4ab9b45e3e941e9002054ef639d1cfb (patch) | |
| tree | 4ed4aafc70ce29472f23d9090d1b8e684c7a73d7 /javascript/01-console-print | |
| parent | d7ce2a3ea234de3a040e762083db88aa3610f320 (diff) | |
Added some JavaScript sample projects
Diffstat (limited to 'javascript/01-console-print')
| -rw-r--r-- | javascript/01-console-print/index.html | 17 |
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> |
