diff --git a/week-1/calc.html b/week-1/calc.html index 896b5e0..b6dd660 100644 --- a/week-1/calc.html +++ b/week-1/calc.html @@ -1,21 +1,47 @@ - +!DOCTYPE html> - calc + calculation - - +

Calculation Page

+

There are some calculations below

+ +

+

+

+

+

+
+ home
diff --git a/week-1/index.html b/week-1/index.html index df6ecbb..89b767a 100644 --- a/week-1/index.html +++ b/week-1/index.html @@ -1,22 +1,36 @@ - - +!DOCTYPE html> - - - - home page - - + // functions + function print_deets(object) { + console.log(object.name); + console.log(object.link); + console.log(object.description); + } + + + + +

Project Website

+

This is our homepage.

+
- -

week 1 index.html - - example to study - +
Calculation Page
+
Team Page
+ diff --git a/week-1/team.html b/week-1/team.html index 5841f0a..beb605d 100644 --- a/week-1/team.html +++ b/week-1/team.html @@ -1,20 +1,36 @@ - - + - - - team page - - - +//Functions +function print_name(teamName) { + console.log(teamName); + +} +function print_members(teamMembers) +console.log(teamMembers); +function print_team_introduction(teamName, teamMembers) { + print_name(teamName); + print_members(teamMembers); +} + + - +

Hi! This is Team Page


+

+

+ + Home Page +