Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.      <head>
  5.      
  6.          <title>
  7.          Dad I Think I Wanna Drop Out
  8.          </title>
  9.          
  10.          <meta name="author" content="Thomas Nelis">
  11.          
  12.    
  13.          
  14.          <style>
  15.            
  16.              body {
  17.              background: url(babe.jpg) no-repeat center fixed;
  18.              background-size: cover;
  19.              }
  20.              
  21.              .trans {
  22.              overflow: auto;
  23.              margin-left: 20%;
  24.              border-left: 1px outset rgb(231, 232, 232);
  25.              background: rgba(229, 229, 229, 0.3);
  26.              }
  27.              
  28.              ul {
  29.              list-style-type: none;
  30.              margin: 0;
  31.              padding: 7px;
  32.              overflow: hidden;
  33.              border: 1px inset rgb(231, 232, 232);
  34.              background: linear-gradient(141deg,
  35.              rgb(70, 71, 71), rgb(122, 122, 122));
  36.              }
  37.              
  38.              li.languages {
  39.              float: right;
  40.              font-size: 90%;
  41.              }
  42.              
  43.              li.EverythingYouOwnInABoxToTheLeft {
  44.              float: left;
  45.              font-size: 160%;
  46.              }
  47.              
  48.              a {
  49.              color: rgb(254, 255, 255);
  50.              }
  51.              
  52.              li a {
  53.              display: block;
  54.              text-align: center;
  55.              padding: 12px 12px 12px 10px;
  56.              <!-- text-decoration: none; -->
  57.              }
  58.              
  59.              li.languages a {
  60.              padding: 4px 4px 15px 10px;
  61.              }
  62.              
  63.              li a:hover {
  64.              background-color: rgb(63, 64, 64);
  65.              }
  66.              
  67.              div.pictures {
  68.              margin: 7% 7% 1% 7%;
  69.              float: left;
  70.              width: 300px;
  71.              }
  72.              
  73.              div.pictures img {
  74.              border: 2px groove rgb(231, 232, 232);
  75.              width: 100%;
  76.              height: auto;
  77.              box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3), 0 8px 20px 0 rgba(0, 0, 0, 0.22);
  78.              }
  79.              
  80.              div.description {
  81.              padding: 10px;
  82.              text-align: center;
  83.              font-size: 130%;
  84.              }
  85.              
  86.              
  87.              
  88.          </style>
  89.          
  90.      </head>
  91.      
  92.      <body>
  93.      
  94.          <div class="trans">
  95.          
  96.             <ul>
  97.              <li class="languages"> <a href="#NL">NL</a> </li>
  98.              <li class="languages"> <a href="#FR">FR</a> </li>
  99.              <li class="languages"> <a href="#EN">EN</a> </li>
  100.        
  101.              <li class="EverythingYouOwnInABoxToTheLeft"> <a href="main.html">Home </a> </li>
  102.              <li class="EverythingYouOwnInABoxToTheLeft"> <a href="map.html">Map </a> </li>
  103.              <li class="EverythingYouOwnInABoxToTheLeft"> <a href="contact.html">Contact </a> </li>
  104.             </ul>
  105.          
  106.             <div class="pictures">
  107.              <img src="baby.jpg">
  108.                 <div class="description">
  109.                     <a href="#Room">Room 1</a>
  110.                 </div>
  111.             </div>
  112.            
  113.             <div class="pictures">
  114.              <img src="baby.jpg">
  115.                 <div class="description">
  116.                     <a href="#Room">Room 2</a>
  117.                 </div>
  118.             </div>
  119.            
  120.             <div class="pictures">
  121.              <img src="baby.jpg">
  122.                 <div class="description">
  123.                     <a href="#Room">Room 3</a>
  124.                 </div>
  125.             </div>
  126.            
  127.             <div class="pictures">
  128.              <img src="baby.jpg">
  129.                 <div class="description">
  130.                     <a href="#Room">Room 4</a>
  131.                 </div>
  132.             </div>
  133.            
  134.             <div class="pictures">
  135.              <img src="baby.jpg">
  136.                 <div class="description">
  137.                     <a href="#Room">Room 5</a>
  138.                 </div>
  139.             </div>
  140.            
  141.             <div class="pictures">
  142.              <img src="baby.jpg">
  143.                 <div class="description">
  144.                     <a href="#Room">Room 6</a>
  145.                 </div>
  146.             </div>
  147.            
  148.             <div class="pictures">
  149.              <img src="baby.jpg">
  150.                 <div class="description">
  151.                     <a href="#Room">Room 7</a>
  152.                 </div>
  153.             </div>
  154.            
  155.             <div class="pictures">
  156.              <img src="baby.jpg">
  157.                 <div class="description">
  158.                     <a href="#Room">Room 8</a>
  159.                 </div>
  160.             </div>
  161.            
  162.          
  163.        
  164.          </div>
  165.          
  166.          
  167.      </body>
  168.      
  169.      
  170. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement