Skip to content

Commit a153f9e

Browse files
committed
add code hello world
1 parent eeeb3dc commit a153f9e

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

hello-world.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<title>Hello World</title>
5+
</head>
6+
<body>
7+
<script>
8+
document.writeln("Hello World");
9+
</script>
10+
11+
<script src="scripts/hello-world.js"></script>
12+
</body>
13+
</html>

index.html

Lines changed: 0 additions & 11 deletions
This file was deleted.

scripts/hello-world.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
document.writeln("Hello World File");

0 commit comments

Comments
 (0)