diff --git a/assignments/DOM Basics/01/index.html b/assignments/DOM Basics/01/index.html
index aaf6993..af58bf7 100644
--- a/assignments/DOM Basics/01/index.html
+++ b/assignments/DOM Basics/01/index.html
@@ -9,8 +9,9 @@
Document Object Model
-
diff --git a/assignments/DOM Basics/01/test.js b/assignments/DOM Basics/01/test.js
new file mode 100644
index 0000000..b384ea7
--- /dev/null
+++ b/assignments/DOM Basics/01/test.js
@@ -0,0 +1,29 @@
+
+let newElem = document.body;
+let newP = document.createElement("p");
+newP.textContent = 'Hello Javascript!';
+newP.innerHTML = "I love Javascript"
+newElem.append(newP);
+
+let ulList = document.createElement("ul");
+ulList.className = 'ullist';
+
+let ullist = document.querySelector(".ullist");
+ulList.innerHTML= "Buy groceriesFeed the catDo laundry";
+document.body.append(ulList);
+
+let newList = document.createElement("li");
+newList.textContent= "make food"
+ulList.appendChild(newList);
+
+ulList.removeChild(newList);
+
+// ulList.firstElementChild.remove() // will remove buy grocerries
+
+// ulList.lastElementChild.remove()// will remove last element child
+
+// ulList.firstChild.remove() // willremove buy groceeries
+
+ulList.firstChild.nextSibling.nextSibling.remove() // will remove 3rd child element
+
+
diff --git a/assignments/DOM Basics/02/index.html b/assignments/DOM Basics/02/index.html
index 818b326..aa557d0 100644
--- a/assignments/DOM Basics/02/index.html
+++ b/assignments/DOM Basics/02/index.html
@@ -47,6 +47,44 @@ Query Selector All
Access me by query all (2)