Skip to content

Commit 24b87d2

Browse files
Marius KrenevičiusMarius Krenevičius
Marius Krenevičius
authored and
Marius Krenevičius
committed
Initial commit
0 parents  commit 24b87d2

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

app.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
window.onload = () => {
2+
//console.log('This is your first program executing!');
3+
}

index.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<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

Comments
 (0)