-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.html
31 lines (27 loc) · 844 Bytes
/
people.html
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
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>Berühmtheiten</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<link rel="icon" type="image/x-icon" href="assets/icons8-baseball-96.png">
<script src="components/header-component.js" type="text/javascript" defer></script>
<script src="components/footer-component.js" type="text/javascript" defer></script>
</head>
<body>
<header-component></header-component>
<div class="container">
<div class="heading">
<h1 class="h1-heading">BERÜHMTHEITEN</h1>
</div>
<div class="divider"></div>
<div>
<h1>Geschichtsprägende Spieler</h1>
</div>
<div class="content">
</div>
</div>
<footer-component></footer-component>
</body>
</html>