irishstorm

index.php

Jul 4th, 2014
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
  4.         <link href='http://fonts.googleapis.com/css?family=Warnes&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
  5.         <link rel="stylesheet" href="css/style.css">
  6.         <script type="text/javascript" src="js/functions.js"></script>
  7.     </head>
  8.    
  9.     <body onload="checkColourPref()">
  10.        
  11.         <!--"Navigation"-->
  12.         <ul id="nav">
  13.             <li><a href="#" id="button" onclick="startTimer();" >Start</a></li>
  14.             <li><a href="#" onclick="stopTimer();" >Stop</a></li>
  15.            
  16.             <ul class="pagecolour"><li>
  17.                 <a href="#">Colour</a><ul>
  18.                 <li><a href="#" style="color:orange" onclick="setPageColour('Orange');" >Orange</a></li>
  19.                 <li><a href="#" style="color:red" onclick="setPageColour('Red');" >Red</a></li>
  20.                 <li><a href="#" style="color:green" onclick="setPageColour('Green');">Green</a></li>
  21.                 <li><a href="#" style="color:purple" onclick="setPageColour('Purple');">Purple</a></li>
  22.                 <li><a href="#" style="color:blue" onclick="setPageColour('Blue');">Blue</a></li></ul>
  23.             </li></ul>
  24.         </ul>
  25.        
  26.        
  27.         <!--"Timer Display"-->
  28.         <div id="timer" class="inset-text" ></div>
  29.        
  30.     </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment