diff --git a/index.html b/index.html
new file mode 100644
index 0000000..69854e8
--- /dev/null
+++ b/index.html
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+ Document Title
+
+
+
+
+
+
+ Hello, World!
+
+
+
+
+
diff --git a/main.css b/main.css
new file mode 100644
index 0000000..63c95c9
--- /dev/null
+++ b/main.css
@@ -0,0 +1,3 @@
+* {
+ background-color: #FFFFFF;
+}
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..6bbdab1
--- /dev/null
+++ b/script.js
@@ -0,0 +1,11 @@
+import http from 'http';
+
+const server = http.createServer((req, res) => {
+ res.statusCode = 200;
+ res.end("Hello, World");
+});
+
+
+server.listen(3000, () => {
+ console.log("Server -> 3000");
+});