+
+
+ Page Title
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/lab-01/README.md b/lab-01/README.md
index 50861f6..0f4a7be 100644
--- a/lab-01/README.md
+++ b/lab-01/README.md
@@ -1,3 +1,17 @@
+Driver: Ishamel Sunday
+Navigator: Patrice Thomas
+
+Code was worked on together.
+
+
+
+
+
+
+
+
+
+
# Assignment Overview: Lab 1
- Write a program that accepts user input and, based on that input, displays messages back to the user.
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..b59c223
--- /dev/null
+++ b/lab-01/main.js
@@ -0,0 +1,112 @@
+//creating prompts for user to input value and storing those values using console.log
+//wrapping Variables into for a given questiion into a function.
+
+let nameIntoFunction = function() {
+let name= prompt('What\s your name');
+name = name;
+console.log(name)
+return name;
+}
+let newNameFunction = nameIntoFunction();
+
+
+
+
+let ageIntoFunction = function() {
+let age= prompt ('How old are you?');
+age = age +' years old';
+console.log(age);
+return age;
+}
+let newAgeFunction = ageIntoFunction();
+
+
+
+let continentIntoFunction = function(){
+let continent= prompt('what continent are you from?');
+continent = 'from '+ continent;
+console.log(continent);
+return continent;
+}
+let newContientFuntion =continentIntoFunction();
+
+
+
+let greetingsIntoFunction = function(){
+let greetings = confirm(name + " " + age + " " +continent);
+console.log(greetings);
+return greetings;
+}
+let newGreetingsFunction = greetingsIntoFunction();
+
+
+
+//wrapping logic into for a given questiion into a function.
+//replacing html with user input
+
+let nameReplacement = function(){
+if(name){
+ document.getElementById('Name-Of-User').innerText = name
+}
+};
+nameReplacement();
+
+
+let ageReplacement = function(){
+if(age){
+ document.getElementById('Your-Age').innerText = age
+}
+};
+ageReplacement();
+
+
+let continentReplacement = function() {
+if(continent){
+ document.getElementById('Birth-Place').innerText = continent
+}
+};
+continentReplacement();
+
+
+
+
+//testing putting values in an array to check if user is a human
+
+let checkingHuman = function() {
+let 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