+
+
+ Page Title
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/lab-01/index.html b/lab-01/index.html
new file mode 100644
index 0000000..4eeb096
--- /dev/null
+++ b/lab-01/index.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+ Page Title
+
+
+
+
+
Where are you from game!
+
Get ready to play a veryexciting game
+
+
Your Entire 411
+
+
Name
+
Age
+
Continent
+
+
My top 10 Soccer Team
+
+
+
Brazil
+
Belgium
+
Senegal
+
Ghana
+
Portugal
+
Mexico
+
Spain
+
England
+
USA
+
Haiti
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/lab-01/main.css b/lab-01/main.css
new file mode 100644
index 0000000..80952f8
--- /dev/null
+++ b/lab-01/main.css
@@ -0,0 +1,18 @@
+
+/* body style */
+body{
+ background-color:rgb(60, 196, 196);
+ font-family: "Helvetica", sans-serif;
+ font-size: 16px;
+}
+
+/* h1 and h2 style */
+h1,h2 {
+ font-family: monospace;
+
+}
+/* list style*/
+ol li {
+font-weight: bold;
+font-style: oblique;
+}
\ No newline at end of file
diff --git a/lab-01/main.js b/lab-01/main.js
new file mode 100644
index 0000000..bc0bfe4
--- /dev/null
+++ b/lab-01/main.js
@@ -0,0 +1,66 @@
+//creating prompts for user to input value and storing those values using console.log
+
+let name= prompt('What\s your name');
+name = name;
+console.log(name)
+
+let age= prompt ('How old are you?');
+age = age +' years old';
+console.log(age);
+
+let continent= prompt('what continent are you from?');
+continent = 'from '+ continent;
+console.log(continent);
+
+let greetings = confirm(name + " " + age + " " +continent);
+console.log(greetings);
+
+
+//replacing html with user input
+if(name){
+ document.getElementById('Name-Of-User').innerText = name
+};
+
+if(age){
+ document.getElementById('Your-Age').innerText = age
+};
+if(continent){
+ document.getElementById('Birth-Place').innerText = continent
+};
+
+//testing putting values in an array to check if user is a human
+let areYouHuman;
+areYouHuman = [ 'like soccer', 'watch soccer','root for Brazil']
+
+//creating a for loop function to check if the use answer affirmatively or negatively to the values in the loop
+
+let emptyArray = []
+let myResponse;
+
+for(var i = 0; i