diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..603b241 Binary files /dev/null and b/.DS_Store differ diff --git a/data/data.php b/data/data.php new file mode 100644 index 0000000..6f53a03 --- /dev/null +++ b/data/data.php @@ -0,0 +1,47 @@ + [ + 'league' => 'Premier league', + 'last-time-champions' => 2004, + 'city' => 'London', + 'url' => 'https://www.arsenal.com/' + ], + 'Aston Villa' => [ + 'league' => 'Premier league', + 'last-time-champions' => 1981, + 'city' => 'Birmingham', + 'url' => 'https://www.avfc.co.uk/' + ], + 'Manchester City' => [ + 'league' => 'Premier league', + 'last-time-champions' => 2023, + 'city' => 'Manchester', + 'url' => 'https://www.mancity.com/' + ], + 'Newcastle' => [ + 'league' => 'Premier league', + 'last-time-champions' => 1927, + 'city' => 'Newcastle', + 'nickname' => 'Magpies', + 'url' => 'https://www.nufc.co.uk/' + ], + 'Chelsea' => [ + 'league' => 'Premier league', + 'last-time-champions' => 2017, + 'city' => 'London', + 'url' => 'https://www.chelseafc.com/en' + ], + 'Watford' => [ + 'league' => 'Championship', + 'last-time-champions' => null, + 'city' => 'London', + 'url' => 'https://www.watfordfc.com/' + ], + 'Brighton' => [ + 'league' => 'Premier league', + 'last-time-champions' => null, + 'city' => 'Brighton', + 'url' => 'https://www.brightonandhovealbion.com/' + ], +]; \ No newline at end of file diff --git a/footer.php b/footer.php new file mode 100644 index 0000000..691287b --- /dev/null +++ b/footer.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/functions/cities.php b/functions/cities.php new file mode 100644 index 0000000..0edab8b --- /dev/null +++ b/functions/cities.php @@ -0,0 +1,2 @@ +cities

"; \ No newline at end of file diff --git a/functions/teams-table.php b/functions/teams-table.php new file mode 100644 index 0000000..4540ce0 --- /dev/null +++ b/functions/teams-table.php @@ -0,0 +1,2 @@ +teams table

"; \ No newline at end of file diff --git a/functions/total-teams.php b/functions/total-teams.php new file mode 100644 index 0000000..930c7db --- /dev/null +++ b/functions/total-teams.php @@ -0,0 +1,2 @@ +total teams

";; \ No newline at end of file diff --git a/header.php b/header.php new file mode 100644 index 0000000..fd54398 --- /dev/null +++ b/header.php @@ -0,0 +1,13 @@ + + + + + + Some teams + + + +
+

Some Teams

+
\ No newline at end of file diff --git a/index.php b/index.php index e69de29..9e6b0a2 100644 --- a/index.php +++ b/index.php @@ -0,0 +1,8 @@ + \ No newline at end of file