What do you want to do? As a prospective job seeker, I want to consider adopting additional features that I have seen in the 'About Me' projects made by other, so that my 'About Me' can become more thorough and interesting than my original conception.
+
+
Top Ten Movies
+
+
+
John Wick 1 and 2
+
The Raid Redemption
+
Logan
+
Thor: Ragnarok
+
The Raid Berandal
+
Django Unchained
+
27 Days later
+
A Quiet Place
+
Shawshank Redemption
+
The Fast and The Furious saga
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/lab-01/main.css b/lab-01/main.css
new file mode 100644
index 0000000..6d7a590
--- /dev/null
+++ b/lab-01/main.css
@@ -0,0 +1,17 @@
+body {
+ margin: 0 auto;
+ background-color: darkgray;
+}
+
+h1 {
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
+}
+
+h2 {
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
+}
+
+li {
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
+ margin: 0 auto;
+}
\ No newline at end of file
diff --git a/lab-01/main.js b/lab-01/main.js
new file mode 100644
index 0000000..a269ea9
--- /dev/null
+++ b/lab-01/main.js
@@ -0,0 +1,42 @@
+console.log(alert("Let's go"));
+
+//These are the prompts section (pop-ups)
+let name = prompt("What's your name?");
+let movies = prompt('Do you like movies?');
+let coder = prompt('Are you a coder?');
+let faveNum = prompt('What is your favorite number?');
+let sports = prompt('Do you play sports?');
+let born = prompt('Are you born in the United States?');
+
+//The "if" functions section
+if(name){
+ document.getElementById('name').innerText = name;
+}
+
+if(movies){
+ document.getElementById('movies').innerText = movies;
+}
+
+if(coder){
+ document.getElementById('coder').innerText = coder;
+}
+
+if(faveNum){
+ document.getElementById('faveNum').innerText = faveNum;
+}
+
+if(sports){
+ document.getElementById('sports').innerText = sports;
+}
+
+if(born){
+ document.getElementById('born').innerText = born;
+}
+
+//This section is where I put my console.log(s)
+console.log(name);
+console.log(movies);
+console.log(coder);
+console.log(faveNum);
+console.log(born);
+