33 lines
734 B
HTML
33 lines
734 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Shop - LKW's</title>
|
|
<link rel="stylesheet" href="./Styles/shop/shop.css">
|
|
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="./Styles/header_footer/header.css">
|
|
<link rel="stylesheet" href="./Styles/header_footer/footer.css">
|
|
</head>
|
|
<body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Fußzeiele -->
|
|
<div id="footer"></div>
|
|
|
|
<script>
|
|
fetch('/footer')
|
|
.then(response => response.text())
|
|
.then(data => {
|
|
document.getElementById('footer').innerHTML = data;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |