Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.59 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. function setbackground()
  8. {
  9.     window.setTimeout( "setbackground()", 5000); // 5000 milliseconds delay
  10.  
  11.     var index = Math.round(Math.random() * 9);
  12.  
  13.     var ColorValue = "FFFFFF"; // default color - white (index = 0)
  14.  
  15.     if(index == 1)
  16.         ColorValue = "FFCCCC"; //peach
  17.     if(index == 2)
  18.         ColorValue = "CCAFFF"; //violet
  19.     if(index == 3)
  20.         ColorValue = "A6BEFF"; //lt blue
  21.     if(index == 4)
  22.         ColorValue = "99FFFF"; //cyan
  23.     if(index == 5)
  24.         ColorValue = "D5CCBB"; //tan
  25.     if(index == 6)
  26.         ColorValue = "99FF99"; //lt green
  27.     if(index == 7)
  28.         ColorValue = "FFFF99"; //lt yellow
  29.     if(index == 8)
  30.         ColorValue = "FFCC99"; //lt orange
  31.     if(index == 9)
  32.         ColorValue = "CCCCCC"; //lt grey
  33.  
  34.     document.bgColor=ColorValue;
  35. }
  36. </script>
  37. </head>
  38. <noscript>
  39.         <body>
  40.  
  41.             <div style="text-align:center"><h1>ENABLE JAVASCRIPT</h1></div>
  42.             <div style="text-align:center"><h3>YOU TURKEY</h3></div>
  43.         </body>
  44.     </noscript>
  45. <body onload="setbackground();">
  46. <div id="container">
  47.   <div id="header">
  48.   <h1>RICO EXPO 2011</h1>
  49.   ...at the World Famous Dringus & Drungul Convention Center
  50.  </div>
  51.  <div id="customHr">
  52.     <hr />
  53.  </div>
  54.  <div id="links">
  55.    <a href='index.php?id=home.html' title="Return to the Homepage">Home</a>&nbsp;|
  56.     <a href='index.php?id=events.html' title="Information about the various events we'll be holding">Events</a>&nbsp;|
  57.     <a href='index.php?id=tickets.html' title="Buy your tickets here">Tickets</a>&nbsp;|
  58.     <a href='index.php?id=hotels.html' title="Looking for somewhere to stay?">Hotels</a>&nbsp;|
  59.     <a href='index.php?id=crabapple/crabapple.php' title="Are you looking to become a Vendor?">Vendor Information</a>&nbsp;|
  60.     <a href='index.php?id=forums.html' title="Screw discussion, use facebook you turkey">Discussion Forums</a>&nbsp;|
  61.     <a href='index.php?id=directions.html' title="Directions from wherever you are coming">Directions</a>&nbsp;|
  62.     <a href='index.php?id=contact.html' title="Contact Us">Contact Us</a>
  63.   </div>
  64.   <div id="customHr">
  65.     <hr />
  66.   </div>
  67.   <div id="mainContent">
  68.     <?php
  69.     if ($_GET['id']==null)
  70.     {
  71.         require ('home.html');
  72.         require ('disclaimer.html');
  73.     } else {
  74.         include ($_GET['id']);
  75.     }
  76.     ?>
  77.   </div>
  78.   <div id="footer">
  79.     <p>A <s>Mark Zuckerberg</s> Turkey Production
  80.     </p>
  81.   </div>
  82. </div>
  83. </body>
  84. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement