From 3b70f16f3a5b71136ea38db3753cc10def165037 Mon Sep 17 00:00:00 2001 From: Fanny Karlsson <70578538+Karlsson2@users.noreply.github.com> Date: Tue, 26 Sep 2023 11:05:31 +0200 Subject: [PATCH] =?UTF-8?q?skapat=20alla=20filer=20och=20l=C3=A4nkat=20iho?= =?UTF-8?q?p=20dem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .DS_Store | Bin 0 -> 6148 bytes data/data.php | 47 ++++++++++++++++++++++++++++++++++++++ footer.php | 2 ++ functions/cities.php | 2 ++ functions/teams-table.php | 2 ++ functions/total-teams.php | 2 ++ header.php | 13 +++++++++++ index.php | 8 +++++++ 8 files changed, 76 insertions(+) create mode 100644 .DS_Store create mode 100644 data/data.php create mode 100644 footer.php create mode 100644 functions/cities.php create mode 100644 functions/teams-table.php create mode 100644 functions/total-teams.php create mode 100644 header.php diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..603b241c0e5fa42e6f57b2315785e8399a43cf3e GIT binary patch literal 6148 zcmeHKJ5Iwu5PbtFjA&9)?g=b$11EBd6f|%F2u1=aAt^vg>C@11DeeJpKA;3l2|{Q_ znt7Amd29Pg+1&vk)5q=<7z3#2ilWJY>G0sxK@=Yn#nz~?!7VoP<@$PHp}#n!?_Qz9 z6&~n2@4r~C7o1aJp6D;HVa$(khkJ5vu>FQHVO8w}X399n3=_0CBi2}@%)Kl zv<#_0Dv%1K0;#|cD8MsYtvYthmWmZlJ zYyx{n&d|iEM5ju$7~*t}m#Aw3dq<~3qWO?`@_X|l_H?datQ^ufW=sWAfqezE_oa>X z{GahJGuY%?NrqG)75J|T$f&(&r~JA&Tfcm#p0$O3NmtXlUK1Mgy-NUp=st2{lRjTG ZXI&H6JL)PrZggT^1Wb?&slYEN@CMLwHyi)} literal 0 HcmV?d00001 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