2023-05-26 16:39:10 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta lang="de"/>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
<meta name="viewport" content="device=device-width, initial-scaling=1"/>
|
|
|
|
<link rel="Stylesheet" type="text/css" href="style.css"/>
|
2023-06-06 13:35:56 +02:00
|
|
|
<link rel="Stylesheet" type="text/css" href="buch_details.css"/>
|
2023-05-26 16:39:10 +02:00
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
2023-06-06 13:35:56 +02:00
|
|
|
<title>Candle Bibliothek | Details</title>
|
2023-05-26 16:39:10 +02:00
|
|
|
<link rel="icon" href="pictures/candle.png">
|
2023-06-06 13:35:56 +02:00
|
|
|
<script src="notwendiges_laden.js" defer></script>
|
2023-05-26 16:39:10 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-06-06 13:35:56 +02:00
|
|
|
<header id="header"></header>
|
|
|
|
|
|
|
|
<!------------------------------------------------------------------------->
|
|
|
|
|
2023-05-26 16:39:10 +02:00
|
|
|
<div class="homepage">
|
2023-06-06 13:35:56 +02:00
|
|
|
<img src="pictures/sidecandle.png" id="sidecandle" alt="sidecandle">
|
2023-05-26 16:39:10 +02:00
|
|
|
<p class="p2">
|
|
|
|
<span id="titlebraun"><strong> Kontakt </strong></span>
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
Kundenservice: +49XXXXXXXXX <br>
|
|
|
|
Telefax: 069 54 732122 <br>
|
|
|
|
E-Mail: 2211780@stud.hs-mannheim.de <br>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
2023-06-06 13:35:56 +02:00
|
|
|
<!------------------------------------------------------------------------->
|
2023-05-26 16:39:10 +02:00
|
|
|
|
2023-06-06 13:35:56 +02:00
|
|
|
<!--Link JS file-->
|
|
|
|
<script src="burgerIcon.js"></script>
|
|
|
|
<!--If it was small and got big,
|
|
|
|
it calls the function only one time and doesn't do it all the time-->
|
|
|
|
<script>
|
|
|
|
var widthissue = false;
|
|
|
|
window.addEventListener("resize", function(event) {
|
|
|
|
if(window.innerWidth > 800 && widthissue) {
|
|
|
|
widthissue = false
|
|
|
|
unset()
|
|
|
|
}
|
|
|
|
else if(window.innerWidth < 800) widthissue = true;
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<nav id="activeid" class="active"></nav>
|
|
|
|
|
|
|
|
<footer id="footer" class="fuss" ></footer>
|
2023-05-26 16:39:10 +02:00
|
|
|
|
2023-06-06 13:35:56 +02:00
|
|
|
</body>
|
2023-05-26 16:39:10 +02:00
|
|
|
</html>
|