Skip to content
Snippets Groups Projects
Select Git revision
  • 71b9dd6cefd2e97c97e3ce411ec651f530562f14
  • master default protected
2 results

index.html

Blame
  • Forked from an inaccessible project.
    index.html 1.64 KiB
    <!DOCTYPE html>
    <html>
    <head>
    	<meta charset="UTF-8">
    	<meta name="viewport" content="width=device-width, initial-scale=1" />
    
    	<title>PizzaLand</title>
    
    	<link rel="icon" href="images/icon.png" sizes="96x96">
    
    	<link rel="stylesheet" type="text/css" href="css/main.css" />
    	<link rel="stylesheet" href="css/header.css">
    	<link rel="stylesheet" href="css/news.css">
    	<link rel="stylesheet" href="css/pizzaList.css">
    	<link rel="stylesheet" href="css/footer.css">
    
    	<script src="src/main.js" defer></script>
    
    </head>
    <body>
    	<header>
    		<nav>
    			<a href="#" class="logo">
    				<img src="images/logo.svg" />
    				<span>Pizza<em>land</em></span>
    			</a>
    			<ul class="mainMenu">
    				<li><a href="/" class="pizzaListLink">La carte</a></li>
    				<li><a href="/a-propos" class="aboutLink">À propos</a></li>
    				<li><a href="/ajouter-pizza" class="pizzaFormLink">Ajouter une pizza</a></li>
    			</ul>
    		</nav>
    	</header>
    	<section class="pageContainer">
    		<header class="pageTitle"></header>
    		<div class="pageContent"></div>
    	</section>
    	<footer>
    		<div>Une (incroyable) création originale de <a href="http://uidlt.fr">Thomas Fritsch</a> pour l'<a href="https://www.iut-a.univ-lille.fr/">IUT A</a> de l'<a href="https://www.univ-lille.fr/">Université de Lille</a></div>
    		<div>Free photos from <a href="https://unsplash.com/unsplash">Unsplash</a></div>
    		<div>Icons made by <a href="https://www.freepik.com/" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" 			    title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" 			    title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
    	</footer>
    </body>
    </html>