-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbody.php
More file actions
27 lines (19 loc) · 830 Bytes
/
body.php
File metadata and controls
27 lines (19 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<body>
<h1>⚽️ UEFA Footboll Teams ⚽️</h1>
<a href="about.php"><button>About me</button></a>
<br><br>
<div class="grid-container">
<?php foreach ($teams as $name => $details): ?>
<div class="team-emblems">
<h2><?= $name ?></h2>
<img src="<?= $details["logo"] ?>" alt="logo">
<h4><?= "Country:" . $details["flag"] ?></h4>
<p><?= "City:" . $details["city"] ?></p>
<p><?= "League:" . $details["league"] ?></p>
<p><?= "UEFA ranking:" . $details["uefa-coefficient-ranking"] ?></p>
<p><?= "Group:" . $details["group"] ?></p>
<a href="<?= $details["url"] ?>" target="_blank"><?= $name ?></a>
</div>
<?php endforeach; ?>
</div>
</body>