Advertisement
Guest User

Untitled

a guest
Sep 20th, 2012
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.     <link href="css/style.css" rel="stylesheet" type="text/css" />
  4.     <link href="css/fonts.css" rel="stylesheet" type="text/css" />
  5.     <script src="js/jquery.js"></script>
  6.     <script src="js/jquery.mousewheel.js"></script>
  7.     <script src="js/smooth.js"></script>
  8.     <script>
  9.     $(function(){
  10.         $("#page-wrap").wrapInner("<table cellspacing='30'><tr>");
  11.         $(".post").wrap("<td></td>");
  12.         $("body").mousewheel(function(event, delta) {
  13.             this.scrollLeft -= (delta * 30);
  14.             event.preventDefault();
  15.         });  
  16.     });
  17.     </script>
  18.     <title>First Things First</title>
  19. </head>
  20. <body>
  21.     <div class="section black" id="section1">
  22.         <div id="introduction">
  23.             <h1>FIRST<br />THINGS</br />FIRST</h1>
  24.         </div>
  25.         <h2>Section 1</h2>
  26.         <p>
  27.             <div class="blackout">
  28.                 <p>Blackout Font</p>
  29.             </div>
  30.             <div class="futura">
  31.                 <p>Futura Font</p>
  32.             </div>
  33.             <div class="museo">
  34.                 <p>Museo Font</p>
  35.             </div>
  36.             <div class="caslon">
  37.                 <p>Big Caslon Font</p>
  38.             </div>
  39.         </p>
  40.         <ul class="nav">
  41.             <li>1</li>
  42.             <li><a href="#section2">2</a></li>
  43.             <li><a href="#section3">3</a></li>
  44.         </ul>
  45.     </div>
  46.     <div class="section white" id="section2">
  47.         <h2>Section 2</h2>
  48.         <p>
  49.             A fathomless and boundless deep,
  50.             There we wander, there we weep;
  51.             On the hungry craving wind
  52.             My Spectre follows thee behind.
  53.      
  54.         </p>
  55.         <ul class="nav">
  56.             <li><a href="#section1">1</a></li>
  57.             <li>2</li>
  58.             <li><a href="#section3">3</a></li>
  59.         </ul>
  60.     </div>
  61.     <div class="section black" id="section3">
  62.         <h2>Section 3</h2>
  63.         <p>
  64.             He scents thy footsteps in the snow
  65.             Wheresoever thou dost go,
  66.             Thro' the wintry hail and rain.
  67.             When wilt thou return again?
  68.      
  69.         </p>
  70.         <ul class="nav">
  71.             <li><a href="#section1">1</a></li>
  72.             <li><a href="#section2">2</a></li>
  73.             <li>3</li>
  74.         </ul>
  75.     </div>
  76. </body>
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement