We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 414c009Copy full SHA for 414c009
index.html
@@ -0,0 +1,13 @@
1
+<!DOCTYPE html>
2
+<html>
3
+ <head>
4
+ <title>Basic JavaScript</title>
5
+ </head>
6
+ <body>
7
+ <h1>Basic JavaScript with Zonayed Ahmed</h1>
8
+ <p>This course is made to teach the basics of JavaScript</p>
9
+
10
+ <script src="script.js"></script>
11
+ </body>
12
+</html>
13
script.js
@@ -0,0 +1,11 @@
+console.log('Hello World from Inside!');
+consle.log('Wrong!');
0 commit comments