1
0
Fork 0
mirror of https://github.com/TheTaz25/denis.ergin.git synced 2025-07-08 07:38:46 +00:00

feat(slides): adjust + extend slides, make task

This commit is contained in:
Denis Ergin 2024-10-05 19:55:13 +02:00
parent f3f3efbaab
commit 6aa0128a13
4 changed files with 178 additions and 0 deletions

View file

View file

@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eine Liste von Spielen mit Metacritic-Bewertung</title>
</head>
<body>
<table>
<thead>
<tr>
<th>Hersteller</th>
<th>Name</th>
<th>Bewertung</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="4" scope="row">Bandai Namco</th>
<td>Dark Souls</td>
<td>89</td>
</tr>
<tr>
<td>Dark Souls 2</td>
<td>91</td>
</tr>
<tr>
<td>Dark Souls 3</td>
<td>89</td>
</tr>
<tr>
<td>Elden Ring</td>
<td>96</td>
</tr>
<tr>
<th scope="row">Larian Games</th>
<td>Baldur's Gate 3</td>
<td>96</td>
</tr>
<tr>
<th rowspan="3" scope="row">Electronic Arts</th>
<td>Dark Space (Remake)</td>
<td>89</td>
</tr>
<tr>
<td>Dead Space 2</td>
<td>90</td>
</tr>
<tr>
<td>Dead Space 3</td>
<td>78</td>
</tr>
</tbody>
</table>
</body>
</html>