diff --git a/index.html b/index.html
new file mode 100644
index 0000000..e626235
--- /dev/null
+++ b/index.html
@@ -0,0 +1,114 @@
+
+
+
+ ${article.title}

${article.source.name}
${article.description}
Author: ${article.author}
+ `
+ ).join('');
+ getTopic.value = '';
+
+ const resultsEl = document.querySelector('#articlesBody');
+
+ resultsEl.innerHTML = results;
+ }
+
+ else {
+ alert('Hmm, slow news day. Maybe search for something else.');
+ }
+
+ }).catch(function(error){
+ alert('Sorry, I couldn\'t find anything.');
+ });
+}
+
+const getSubmit = document.querySelector("#searchTopic");
+
+getSubmit.addEventListener("submit", submitHandler);
\ No newline at end of file