diff --git a/main.js b/main.js
new file mode 100644
index 0000000..3221743
--- /dev/null
+++ b/main.js
@@ -0,0 +1,23 @@
+// Change font of body
+const bodyElem = document.querySelector('body');
+bodyElem.style.fontFamily = "Arial, sans-serif";
+
+const liElem = document.querySelectorAll('li');
+
+for (let i = 0; i < liElem.length; i++) {
+ const thisLi = liElem[i];
+ thisLi.style.color = "red";
+}
+
+//Add image
+let imageHtml =
+`
+
+`;
+
+bodyElem.innerHTML += imageHtml;
+
+let imgElem = document.querySelector('.image');
+imgElem.width = "100";
+