Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.45 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <head>
  3. <title>RICO EXPO 2011</title>
  4. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
  5. <link rel="stylesheet" type="text/css" href="css/lolwat.css"/>
  6. <script type="text/javascript">
  7.             var speed = 50,
  8.                     i     = 0,
  9.                     k     = 0,
  10.                     hex   = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"),
  11.                     col   = new Array(0, 0),
  12.                     t;
  13.             function randCol()
  14.                 {
  15.                     col[0] = 0;
  16.                     col[1] = 0;
  17.                     for(j=0;j<6;j++)
  18.                         {
  19.                             k = Math.floor(Math.random()*16);
  20.                             col[0] = (col[0] << 4) OR [k];
  21.                             col[1] = (col[0] << 4) or [(k + 8) % 16];
  22.                         }
  23.                 }
  24.             function partyHard()
  25.                 {
  26.                     randCol();
  27.                     document.mainContent.style.backgroundColor = col[0];
  28.                     document.mainContent.style.color           = col[1];
  29.                     t=setTimeout("partyHard();",speed);
  30.                 }
  31.         </script>
  32. </head>
  33. <noscript>
  34.         <body>
  35.  
  36.             <div style="text-align:center"><h1>ENABLE JAVASCRIPT</h1></div>
  37.             <div style="text-align:center"><h3>YOU TURKEY</h3></div>
  38.         </body>
  39.     </noscript>
  40. <body class="pussydoodles" onload="partyHard();">
  41. <div id="container">
  42.   <div id="header">
  43.   <h1>RICO EXPO 2011</h1>
  44.   ...at the World Famous Dringus & Drungul Convention Center
  45.  </div>
  46.  <div id="customHr">
  47.     <hr />
  48.  </div>
  49.  <div id="links">
  50.    <a href='index.php?id=home.html' title="Return to the Homepage">Home</a>&nbsp;|
  51.     <a href='index.php?id=events.html' title="Information about the various events we'll be holding">Events</a>&nbsp;|
  52.     <a href='index.php?id=tickets.html' title="Buy your tickets here">Tickets</a>&nbsp;|
  53.     <a href='index.php?id=hotels.html' title="Looking for somewhere to stay?">Hotels</a>&nbsp;|
  54.     <a href='index.php?id=crabapple/crabapple.php' title="Are you looking to become a Vendor?">Vendor Information</a>&nbsp;|
  55.     <a href='index.php?id=forums.html' title="Screw discussion, use facebook you turkey">Discussion Forums</a>&nbsp;|
  56.     <a href='index.php?id=directions.html' title="Directions from wherever you are coming">Directions</a>&nbsp;|
  57.     <a href='index.php?id=contact.html' title="Contact Us">Contact Us</a>
  58.   </div>
  59.   <div id="customHr">
  60.     <hr />
  61.   </div>
  62.   <div id="mainContent">
  63.     <?php
  64.     if ($_GET['id']==null)
  65.     {
  66.         require ('home.html');
  67.         require ('disclaimer.html');
  68.     } else {
  69.         include ($_GET['id']);
  70.     }
  71.     ?>
  72.   </div>
  73.   <div id="footer">
  74.     <p>A <s>Mark Zuckerberg</s> Turkey Production
  75.     </p>
  76.   </div>
  77. </div>
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement