We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 24b87d2Copy full SHA for 24b87d2
.DS_Store
6 KB
app.js
@@ -0,0 +1,3 @@
1
+window.onload = () => {
2
+ //console.log('This is your first program executing!');
3
+}
index.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>Your first Javascript Project</title>
8
+ </head>
9
+ <body>
10
+ <p>
11
+ Hello there! Press F12 on your keyboard to see if the console says
12
+ anything to you. If not, let's search for a problem and debug the given
13
+ code!
14
+ </p>
15
+ <script src="./app.js"></script>
16
+ </body>
17
+</html>
0 commit comments