Advertisement
Guest User

Untitled

a guest
Apr 21st, 2010
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.83 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  2.   "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5.     <head>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7.         <title>WebDev Assingmet</title>
  8.         <link href="styles/reset.css" rel="stylesheet" type="text/css" />
  9.         <link href="styles/style.css" rel="stylesheet" type="text/css" />
  10.         <script type="text/javascript" src="scripts/lastModified.js"></script>
  11.     </head>
  12.     <body>
  13.         <div id="wrapper">
  14.             <div id="header">
  15.                 <a href="index.shtml"><img id="headerImage" src="images/header.png" alt="Header - Hello!" /></a>
  16.             </div>
  17.        
  18.             <div id="sidebar">
  19.                     <ul id="nav">
  20.                         <li><a href="index.shtml" id="current">Home</a></li>
  21.                         <li><a href="../wordpress">My Blog</a></li>
  22.                         <li><a href="../webshop/catalog">Webshop</a></li>
  23.                         <li><a href="cv.shtml">CV</a></li>
  24.                         <li><a href="about.shtml">About</a></li>
  25.                     </ul>
  26.             </div>
  27.             <div id="contentArea">
  28.                 <form id="greetingForm" action="" onsubmit="greetUser()">
  29.                         <div class="entry">
  30.                             <input type="text" id="greetingTextArea" value="Enter your name here!" onblur="if (this.value == ''){this.value = 'Enter your name here!';}" onfocus="if (this.value == 'Enter your name here!') {this.value = '';}"  maxlength="20" />
  31.                         </div>
  32.                         <div class="greet">
  33.                             <input type="submit" id="greetMeButton" title="Greet Me" value="Greet Me!" />
  34.                         </div>
  35.                 </form>
  36.                 <div id="originality">
  37.                 <p>I declare that the contents of this site are entirely my own work, except the navigation part
  38.                     which came from <a href="http://www.oswd.org/design/preview/id/3567">OSWD.</a>The idea and basic structure of the markup and css were taken from there but they were modified in the process of creating this site.</p>
  39.                 </div>
  40.             </div>
  41.                         <div id="footer">
  42.                     <br/>
  43.                     <br/>
  44.                     <img class="footerImage" src="images/foot.png" alt="Footer- Foot" />
  45.                    
  46.                     <p class="disclaimer">
  47.                         The information provided on this and other pages by me, Todor Videv
  48.                         (ttv9@aber.ac.uk), is under my own personal responsibility and not that of
  49.                         Aberystwyth University. Similarly,any opinions expressed are my own and are in
  50.                         no way to be taken as those of A.U. The use of the University’s logo or crest
  51.                         is not allowed on individual user’s web pages.
  52.                     </p>
  53.                    
  54.                     <div class="validButtons clearfix">
  55.                         <a href="http://validator.w3.org/check?uri=referer"><img class="validXHTML" src="images/xhtml.gif" alt="Valid xHTML" /></a>
  56.                         <a href="http://jigsaw.w3.org/css-validator/check/referer"><img class="validCSS" src="images/css.gif" alt="Valid CSS" /></a>
  57.                     </div>
  58.                     <br/>
  59.             </div>
  60.         </div>
  61.         <script type="text/javascript" src="scripts/cts.js"></script>
  62.     </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement