HTMLify
index.html
Views: 4 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | <!DOCTYPE HTML> <html> <head> <title>photo_style_two</title> <meta name="description" content="website description" /> <meta name="keywords" content="website keywords, website keywords" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" type="text/css" href="css/style.css" /> <!-- modernizr enables HTML5 elements and feature detects --> <script type="text/javascript" src="js/modernizr-1.5.min.js"></script> </head> <body> <div id="main"> <header> <div id="logo"> <div id="logo_text"> <!-- class="logo_colour", allows you to change the colour of the text --> <h1><a href="index.html">photo<span class="logo_colour">_style_two</span></a></h1> <h2>Simple. Contemporary. Website Template.</h2> </div> </div> <nav> <ul class="sf-menu" id="nav"> <li class="selected"><a href="index.html">Home</a></li> <li><a href="about.html">About Me</a></li> <li><a href="portfolio.html">My Portfolio</a></li> <li><a href="blog.html">Blog</a></li> <li><a href="#">Example Drop Down</a> <ul> <li><a href="#">Drop Down One</a></li> <li><a href="#">Drop Down Two</a> <ul> <li><a href="#">Sub Drop Down One</a></li> <li><a href="#">Sub Drop Down Two</a></li> <li><a href="#">Sub Drop Down Three</a></li> <li><a href="#">Sub Drop Down Four</a></li> <li><a href="#">Sub Drop Down Five</a></li> </ul> </li> <li><a href="#">Drop Down Three</a></li> <li><a href="#">Drop Down Four</a></li> <li><a href="#">Drop Down Five</a></li> </ul> </li> <li><a href="contact.php">Contact Us</a></li> </ul> </nav> </header> <div id="site_content"> <div id="sidebar_container"> <div class="gallery"> <ul class="images"> <li class="show"><img width="450" height="450" src="images/1.jpg" alt="photo_one" /></li> <li><img width="450" height="450" src="images/2.jpg" alt="photo_two" /></li> <li><img width="450" height="450" src="images/3.jpg" alt="photo_three" /></li> <li><img width="450" height="450" src="images/4.jpg" alt="photo_four" /></li> <li><img width="450" height="450" src="images/5.jpg" alt="photo_five" /></li> </ul> </div> </div> <div id="content"> <h1>Welcome to photo_style_two</h1> <p>This standards compliant, fixed width website template is released as an 'open source' design (under a <a href="http://creativecommons.org/licenses/by/3.0">Creative Commons Attribution 3.0 Licence</a>), which means that you are free to use it for anything you want (including modifying and amending it). All I ask is that you leave the 'design from css3templates.co.uk' link in the footer of the template. All of the photos were taken by me - use as you wish.</p> <h3>Browser Compatibility</h3> <p>This template has been tested in the following browsers:</p> <ul> <li>Internet Explorer 8</li> <li>Internet Explorer 7</li> <li>FireFox 10</li> <li>Google Chrome 17</li> </ul> </div> </div> <footer> <p>Copyright © photo_style_two | <a href="http://www.css3templates.co.uk">design from css3templates.co.uk</a></p> </footer> </div> <p> </p> <!-- javascript at the bottom for fast page loading --> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/jquery.easing-sooper.js"></script> <script type="text/javascript" src="js/jquery.sooperfish.js"></script> <script type="text/javascript" src="js/image_fade.js"></script> <script type="text/javascript"> $(document).ready(function() { $('ul.sf-menu').sooperfish(); }); </script> </body> </html> |