-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
1,187 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="it"> | ||
<head> | ||
<script src="./cookies.js"></script> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contatti</title> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
<script src="./themeandmenu.js"></script> | ||
</head> | ||
<body> | ||
<div class="main"> | ||
|
||
|
||
<div class="leftside"> | ||
<nav id="hamburgermenu"> | ||
<img src="Icone/icons8-menu-384.png" onmouseover="menu()" alt=""> | ||
</nav> | ||
|
||
<div id="navigationmenu" onmouseleave="menu()"> | ||
<a href="./index.html">HOME</a> | ||
<a href="./filosofia.html">FILOSOFIA</a> | ||
<a href="./dove.html">DOVE</a> | ||
<a href="./pizze.html">PIZZE</a> | ||
<a href="./contatti.html">CONTATTI</a> | ||
<p onclick="closemenu()">X</p> | ||
</div> | ||
|
||
<div id="contatti"> | ||
<img id="logoid" src="logos/300ppi/finaleTavola disegno 1 copia 3.png" alt="" style="display: none;"> | ||
<div id="textunderlogo"> | ||
<h1>Contatti</h1> | ||
<p>Email: <a href="mailto:">[email protected] </a><br> | ||
Telefono: <a href="tel:+0229514862">02/29514862</a> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div id="bottomleft"> | ||
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div> | ||
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div> | ||
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div> | ||
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> --> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
if(document.cookie.search("mode") == -1){ | ||
document.cookie = "mode=theme1"; | ||
} | ||
|
||
|
||
function getCookie(cookieName) { | ||
let cookie = {}; | ||
document.cookie.split(';').forEach(function(el) { | ||
let [key,value] = el.split('='); | ||
cookie[key.trim()] = value; | ||
}) | ||
return cookie[cookieName]; | ||
} | ||
|
||
|
||
|
||
function checktheme() { | ||
if(getCookie("mode") === "theme1") { | ||
changetheme('theme1'); | ||
} else { | ||
changetheme('theme2') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="it"> | ||
<head> | ||
<script src="./cookies.js"></script> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Dove</title> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
<script src="./themeandmenu.js"></script> | ||
</head> | ||
<body onload="checktheme()"> | ||
<div class="main"> | ||
|
||
|
||
<div class="leftside"> | ||
<nav id="hamburgermenu"> | ||
<img src="Icone/icons8-menu-384.png" onmouseover="menu()" alt=""> | ||
</nav> | ||
|
||
<div id="navigationmenu" onmouseleave="menu()"> | ||
<a href="./index.html">HOME</a> | ||
<a href="./filosofia.html">FILOSOFIA</a> | ||
<a href="./dove.html">DOVE</a> | ||
<a href="./pizze.html">PIZZE</a> | ||
<a href="./contatti.html">CONTATTI</a> | ||
<p onclick="closemenu()">X</p> | ||
</div> | ||
|
||
<div id="logosection"> | ||
<img id="logoid" src="logos/300ppi/finaleTavola disegno 1 copia 3.png" alt="" style="display: none;"> | ||
<div id="textunderlogo"> | ||
<h1>Dove ci puoi trovare?</h1> | ||
<p>Aperto dalle 12 alle 14.30 e dalle 19.30 alle 22.30 | ||
Chiusura settimanale la domenica a mezzogiorno </p> | ||
<p style="text-align: center; justify-content: center;">Via Giovanni Battista Morgagni 37</p> | ||
</div> | ||
</div> | ||
|
||
<div id="bottomleft"> | ||
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div> | ||
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div> | ||
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div> | ||
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> --> | ||
</div> | ||
</div> | ||
|
||
<div class="rightside"> | ||
<div class="imgwrappdove" style="background-image: url(''); flex-direction: column;"> | ||
<div id="imglocation"></div> | ||
<div class="googlemaps"> | ||
<div style="width: 100%"><iframe width="100%" height="600" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?width=100%25&height=600&hl=en&q=Pizzeria%20Geppo%20di%20Geppo%201981%20srl,%20Via%20Giovanni%20Battista%20Morgagni,%20Milano,%20MI+(Geppo)&t=&z=14&ie=UTF8&iwloc=B&output=embed"><a href="https://www.maps.ie/distance-area-calculator.html">measure distance on map</a></iframe></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="it"> | ||
<head> | ||
<script src="./cookies.js"></script> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Filosofia</title> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
<script src="./themeandmenu.js"></script> | ||
</head> | ||
<body> | ||
<div class="main"> | ||
|
||
|
||
<div class="leftside"> | ||
<nav id="hamburgermenu"> | ||
<img src="Icone/icons8-menu-384.png" onmouseover="menu()" alt=""> | ||
</nav> | ||
|
||
<div id="navigationmenu" onmouseleave="menu()"> | ||
<a href="./index.html">HOME</a> | ||
<a href="./filosofia.html">FILOSOFIA</a> | ||
<a href="./dove.html">DOVE</a> | ||
<a href="./pizze.html">PIZZE</a> | ||
<a href="./contatti.html">CONTATTI</a> | ||
<p onclick="closemenu()">X</p> | ||
</div> | ||
|
||
<div id="logosection"> | ||
<img id="logoid" src="logos/300ppi/finaleTavola disegno 1 copia 3.png" alt="" style="display: none;"> | ||
<div id="textunderlogo"> | ||
<h1>La nostra filosofia</h1> | ||
<p>Abbiamo iniziato a fare le pizze in questo piccolo locale nel 1981, Milano era diversa, molto diversa. | ||
|
||
Sono passati 40 anni e facciamo le nostre pizze con la stessa ricetta, gli stessi ingredienti e la stessa filosofia. | ||
|
||
Non ci siamo fatti convertire alle tendenze e mode degli ultimi anni: lievitazioni lunghissime, farine ricercate, pizze gourmet, ingredienti raffinati e abbinamenti azzardati. | ||
|
||
A noi la pizza piace SEMPLICE E BUONA, come la facevamo quaranta anni fa. </p> | ||
</div> | ||
</div> | ||
|
||
<div id="bottomleft"> | ||
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div> | ||
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div> | ||
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div> | ||
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> --> | ||
</div> | ||
</div> | ||
|
||
<div class="rightside"> | ||
<div class="imgwrapp" style="background-image: url('./optimized\ imgs/Melanzana.jpg');"> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html lang="it"> | ||
<head> | ||
<script src="./cookies.js"></script> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Home</title> | ||
|
||
<link rel="stylesheet" href="style.css"> | ||
<script src="./themeandmenu.js"></script> | ||
</head> | ||
<body> | ||
<div class="main"> | ||
|
||
|
||
<div class="leftside"> | ||
<nav id="hamburgermenu"> | ||
<img src="./Icone/icons8-menu-384.png" onmouseover="menu()" alt=""> | ||
</nav> | ||
|
||
<div id="navigationmenu" onmouseleave="menu()"> | ||
<a href="./index.html">HOME</a> | ||
<a href="./filosofia.html">FILOSOFIA</a> | ||
<a href="./dove.html">DOVE</a> | ||
<a href="./pizze.html">PIZZE</a> | ||
<a href="./contatti.html">CONTATTI</a> | ||
<p onclick="closemenu()">X</p> | ||
</div> | ||
|
||
<div id="logosection"> | ||
<img id="logoid" src="./logos/300ppi/finaleTavola disegno 1 copia 3.png" alt=""> | ||
<div id="textunderlogo"> | ||
<h2>DAL 1981 A MILANO</h2> | ||
<h1 style="margin-top: -1vh;">Pizza semplice e buona</h1> | ||
</div> | ||
</div> | ||
|
||
<div id="bottomleft"> | ||
<div id="themetoolpit" style="background-color: #efecdb;" onclick="changetheme('theme1')"></div> | ||
<div id="themetoolpit" style="background-color: #44171c;" onclick="changetheme('theme2')"></div> | ||
<!-- <div id="themetoolpit" style="background-color: #fff;" onclick="changetheme()"></div> | ||
<div id="themetoolpit" style="background-color: #000;" onclick="changetheme()"></div> --> | ||
</div> | ||
</div> | ||
|
||
<div class="rightside"> | ||
<div class="imgwrapp"> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.