Advertisement
edo_py

Home.html

Dec 29th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="it-IT">
  3.     <head>
  4.         <title>Home</title>
  5.         <link rel="stylesheet" type="text/css" href="../../Stylesheets/general.css">
  6.     </head>
  7.     <body>
  8.         <script type="text/javascript" src="../../Scripts/home.js"></script>
  9.         <h1>Ciao!</h1>
  10.         <form>
  11.             <input type="image" src="../../Images/italian.png" onclick="window.location.href = 'home.html';" >
  12.             <input type="image" src="../../Images/english-usa.png" onclick="window.location.href = '../en-US/home.html';" >
  13.         </form>
  14.         <ul>
  15.             <li> <a class="active" href="home.html">Home</a> </li>
  16.             <li> <a href="news.html">Notizie</a> </li>
  17.             <li> <a href="chi-siamo.html">Chi siamo</a> </li>
  18.             <li class="dropdown"> <a href="download.html" class="dropbtn">Download</a>
  19.                 <div class="dropdown-content">
  20.                     <a href="Downloads/Edo-s-Tool-Kit.html">Edo's ToolKit</a>
  21.                 </div>
  22.             </li>
  23.         </ul>
  24.     </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement