diff --git a/brown-wall.html b/brown-wall.html
new file mode 100644
index 0000000..10dcf22
--- /dev/null
+++ b/brown-wall.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Brown Wall
+
+
+ Brown Wall
+ A wall which has been hit with a considerable amount of faeces.
+
+
+
+
+
diff --git a/main.js b/main.js
new file mode 100644
index 0000000..a273ed9
--- /dev/null
+++ b/main.js
@@ -0,0 +1,12 @@
+"using strict";
+
+const genres = [ "FPP"
+ , "Action Adventure"
+ , "Lobotomy aka Idlegame"
+ , "Specticle Fighter"
+ ]
+
+const genreMenu = document.getElementById('genre');
+genres.forEach( genre => {
+ genreMenu.append(Object.assign( document.createElement("option"), { id:genre.toLowerCase(), innerHTML:genre }));
+});