2023-05-03 23:07:04 +02:00
<!DOCTYPE html>
< html >
< head >
< meta lang = "de" / >
< meta charset = "utf-8" / >
< meta name = "viewport" content = "device=device-width, initial-scaling=1" / >
2023-05-16 21:30:30 +02:00
< link rel = "Stylesheet" type = "text/css" href = "style.css" / >
2023-05-03 23:07:04 +02:00
< link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" >
2023-05-16 22:44:52 +02:00
< title > Candle Bibliothek | Percy Jackson: Diebe im Olymp< / title >
2023-05-16 22:49:27 +02:00
< link rel = "icon" href = "pictures/candle.png" >
2023-05-03 23:07:04 +02:00
< / head >
< body >
< header >
< h1 class = "kopf" >
< br > < br >
2023-05-16 21:30:30 +02:00
Bibliothek < a href = "index.html" id = "bildID" > < img id = "CandleID" src = "pictures/candle.png" alt = "Bild von einer Kerze"
width="200" height="192"/> < / a >
2023-05-03 23:07:04 +02:00
< br > < br > Candle
< / h1 >
< div >
< a id = "uberuns" href = "uberuns.html" > Über Uns< / a >
< a id = "buecher" href = "buecher.html" > Bücher< / a >
2023-05-16 22:02:57 +02:00
< a id = "meinebuecher" href = "anmelden_meinebuecher.html" > Meine Bücher< / a >
2023-05-17 17:17:44 +02:00
< a id = "abmelden" href = "abmelden.html" > Abmelden< / a >
2023-05-03 23:07:04 +02:00
< form action = "" >
< input class = "suchleiste" type = "search" placeholder = "Suche..." >
< button type = "submit" id = "buttonID" class = "searchButton" > < i class = "fa fa-search" > < / i > < / button >
< / form >
< a id = "erweitertesuche" href = "erweitertesuche.html" > Erweiterte Suche< / a >
2023-05-16 22:02:57 +02:00
< a href = "anmelden_warenkorb.html" id = "warenKorbID" > < img id = "shoppingCard" src = "pictures/shopingcart.png" alt = "Bild von einem Wagen"
2023-05-03 23:07:04 +02:00
width="50" height="50"/> < / a >
< / div >
< / header >
< div class = "haupt" >
<!-- First Item -->
< div id = "firstItem" class = "items" >
< img src = "pictures/percy_jackson_diebe_im_olymp.jpg" width = "125" height = "200" / >
< h3 class = "headerinItem" >
Percy Jackson: Diebe im Olymp
< / h3 >
< p class = "discinItem" > Verfasser: Rick Riordan < br >
Erscheinungsjahr: 2010 < br >
Verlag: Carlsen < br >
Kategorie: Fantasy
< / p >
< a class = "greenbutton" href = "" > Verfügbar< / a >
< img id = "shoppingwagen" src = "pictures/shopping_cart.png" alt = "shoppingwagen" href = "" > < / a >
< p class = "percypar" >
< strong style = "font-size: 25px;" > Inhalt< / strong > < br >
Percy versteht die Welt nicht mehr. Jedes Jahr fliegt er von einer anderen Schule. Ständig passieren ihm seltsame Unfälle. Und jetzt soll er
2023-05-17 22:06:58 +02:00
auch noch an dem Tornado schuld sein! Langsam wird ihm klar: Irgendjemand hat es auf ihn abgesehen. Als Percy sich mit Hilfe seines Freundes Grover vor
2023-05-03 23:07:04 +02:00
einem Minotaurus ins Camp Half-Blood rettet, erfährt er die Wahrheit: Sein Vater ist der Meeresgott Poseidon, Percy also ein Halbgott. Und er hat einen mächtigen
2023-05-17 22:06:58 +02:00
Feind: Kronos, den Titanen. Die Götter stehen Kopf- und Percy und seine Freunde vor einem unglaublichen Abenteuer...
2023-05-03 23:07:04 +02:00
< br > < br >
< strong style = "font-size: 25px;" > Details< / strong > < br >
ISBN: 978-3-551-55661-5 < br >
Sprache: Deutsch < br >
Stichwörter: Griechenland, Griechische Sagen, Griechische Götter, Zeus, Demeter, Persephone, Hera, Hades, Poseidon, Athene, Aphrodite, Ares, Hephaistos,
Apollo, Artemis, Hermes, Dionysos, Sage, Sagen
< / p >
< / div >
< / div >
<!-- 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 >
2023-05-16 22:14:21 +02:00
< nav id = "activeid" class = "active" >
< div class = "navLinks" >
< input class = "nav-toggleclass" id = "nav-toggle" type = "checkbox" onclick = "openNav()" ; >
< label for = "nav-toggle" class = "icon-burger" >
2023-05-03 23:07:04 +02:00
< div class = "line" > < / div >
< div class = "line" > < / div >
< div class = "line" > < / div >
< / label >
2023-05-16 22:14:21 +02:00
< / div >
< / nav >
2023-05-03 23:07:04 +02:00
< footer class = "fuss" >
< div >
< a id = "impressum" href = "impressum.html" > Impressum< / a >
< a id = "kontakt" href = "kontakt.html" > Kontakt< / a >
< a id = "datenschutz" href = "datenschutz.html" > Datenschutz< / a >
< / div >
< / footer >
< / body >
< / html >