tangled
alpha
login
or
join now
hawkticehurst.com
/
hello-world
0
fork
atom
This thing on?
0
fork
atom
overview
issues
pulls
pipelines
Initial commit
Hawk Ticehurst
5 months ago
03d12d89
+15
3 changed files
expand all
collapse all
unified
split
README.md
index.html
main.js
+2
README.md
···
1
1
+
# Hello there!
2
2
+
+12
index.html
···
1
1
+
<!DOCTYPE html>
2
2
+
<html lang="en">
3
3
+
<head>
4
4
+
<meta charset="UTF-8">
5
5
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6
6
+
<title>A Website</title>
7
7
+
</head>
8
8
+
<body>
9
9
+
<h1>Welcome to My Website</h1>
10
10
+
<script src="main.js"></script>
11
11
+
</body>
12
12
+
</html>
+1
main.js
···
1
1
+
console.log("Hello, World!");