Created
February 4, 2009 15:43
-
-
Save anonymous/58157 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> | |
<!-- <script type="text/javascript" src="file:///Users/acaldelas/Desktop/Wine Library Concept/Code/wine-lib-script.js"></script> --> | |
<link rel="stylesheet"type="text/css"href="wine-lib-styles.css"/> | |
<title>Wine Library</title> | |
</head> | |
<body> | |
<!--HEADER--> | |
<div id="header"> | |
<div id="logo"> <img src="file:///Users/acaldelas/Desktop/Wine Library Concept/Images/wine-library-logo.jpg"> </div> | |
<!--PROFILE / CART--> | |
<div id="profile-cart"> | |
<img id="profile-cart-corner-left"src ="file:///Users/acaldelas/Desktop/Wine Library Concept/Images/profile-cart-corner-left.jpg"> | |
<a id="log-in" href=""><span>log in</span></a> | |
<img id="profile-icon" src ="file:///Users/acaldelas/Desktop/Wine Library Concept/Images/profile.jpg"><a id="account" href=""><span>account</span></a> | |
<img id="cart-icon" src ="file:///Users/acaldelas/Desktop/Wine Library Concept/Images/cart.jpg"> | |
<a id="cart-items" href=""><span>(0000) items</span></a> | |
<img id="profile-cart-corner-right" src ="file:///Users/acaldelas/Desktop/Wine Library Concept/Images/profile-cart-corner-right.jpg"> | |
</div> | |
<!--END OF PROFILE / CART--> | |
<!--NAV LINKS--> | |
<ul id="menu"> | |
<li><a onmouseover="headerrollover" href=""><span>wines</span></a></li> | |
<li><a href=""><span>stuff</span></a></li> | |
<li><a href=""><span>spirits</span></a></li> | |
<li><a href=""><span>collectors</span></a></li> | |
<li><a href=""><span>best buys</span></a></li> | |
<li><a href=""><span>spirits</span></a></li> | |
<li><a href=""><span>network</span></a></li> | |
<li><a href=""><span>FAQ</span></a></li> | |
</ul> | |
<!--END OF NAV LINKS--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function headerrollover() | |
{ | |
document.a.color="#ffffff"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment