Skip to content

Commit 414c009

Browse files
committed
starter pack init
0 parents  commit 414c009

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
console.log('Hello World from Inside!');
2+
3+
4+
5+
6+
7+
8+
9+
10+
11+
consle.log('Wrong!');

0 commit comments

Comments
 (0)