Advertisement
ImKingEz_

Untitled

Jun 11th, 2021
1,114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="it">
  3.     <head>
  4.         <link href="css/homecss.css" rel="stylesheet" type="text/css">
  5.         <link rel="preconnect" href="https://fonts.gstatic.com">
  6.         <link href="https://fonts.googleapis.com/css2?family=Redressed&display=swap" rel="stylesheet"> <!-- Redressed -->
  7.         <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet"> <!-- Open Sans Regular 400 -->
  8.         <link href="https://fonts.googleapis.com/css2?family=Lora:wght@500&display=swap" rel="stylesheet"> <!-- Lora Medium 500 -->
  9.         <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300&display=swap" rel="stylesheet"> <!-- Roboto Light Italic -->
  10.         <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap" rel="stylesheet"> <!-- Inter 300-400-700-900 -->
  11.         <title> Pizzeria | Home </title>
  12.         <link rel="shortcut icon" href="img/favicon.ico" />
  13.         <meta charset = "UTF-8">
  14.         <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  15.     </head>
  16.     <body>
  17.         <nav oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
  18.             <div id="menudesktop">
  19.                 <img src="img/logo.png" class="logo" alt="logo">
  20.                 <ul>
  21.                         <li> <a href="#">Home</a> </li>
  22.                         <li> <a href="#">Menu</a> </li>
  23.                         <li> <a href="#">Foto</a> </li>
  24.                         <li> <a href="#">Contattaci</a> </li>
  25.                 </ul>
  26.             </div>
  27.             <ul id="menuresponsive">
  28.                 <li>
  29.                     <a href="#" id="simbolomenu"> &#9776; </a>
  30.                     <div class="dropdown-content">
  31.                         <a href="#">Home</a>
  32.                         <a href="#">Menu</a>
  33.                         <a href="#">Foto</a>
  34.                         <a href="#">Contattaci</a>
  35.                     </div>
  36.                 </li>
  37.             </ul>
  38.             <div class="social">
  39.                 <a href="#" target="_blank"> <img src="img/facebook.png" alt="facebook"> </a>
  40.                 <a href="#" target="_blank"> <img src="img/instagram.png" alt="instagram"> </a>
  41.             </div>
  42.         </nav>
  43.         <div id="top" oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
  44.             <div id="top--citazione">
  45.                 <p style="margin-top: 10vw;">&quot;Noi italiani ci distinguiamo con il nostro cibo.</p>
  46.                 <p>Ecco perch&egrave; ci piace associare l&apos;idea di casa</p>
  47.                 <p>a quella di una tavola imbandita con attorno familiari e amici:</p>
  48.                 <p>Questo &egrave;&quot;</p>
  49.                 <div id="bandiera">
  50.                 </div>
  51.             </div>
  52.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement