Wednesday, 20 October 2010

Java Jam Part 2

CSS


* {
    background-color: #ffffcc;
    font-family: Verdana, Ariel, sans-serif;
    color: #330000;
}

h1 {
    font-style: normal;
    color: #000000;
    background-color: #ccaa66;
    text-align: center;
    line-height: 200%;
}

#nav {
    text-align: center;
}

#footer {
    font-style: italic;
    color: #000000;
    background-color: #ccaa66;
    text-align: center;
    line-height: normal;
    font-size: small;
}

Index

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaJam Coffee House</title>
<link rel="stylesheet" type="text/css" href="javajamcss.css"/>
</head>

<body>
<h1>JavaJam Coffee House</h1>
<div id="nav"><p><a href="index.html">Home</a> <a href="menu.html">Menu</a> <a href="music.html">Music</a> <a href="jobs.html">Jobs</a></p></div>
<div id="content"><br />
<ul>
<li>Specialty coffe and tea</li>
<li>Bagels, muffins and organic snacks</li>
<li>Music and poetry readings</li>
<li>Open mic night</li>
</ul>
<br /></div>
<div id="footer"> 12312 Main street<br />
Mountain Home, CA 93923<br />
1-888-555-5555<br />
<em><small>Copyright &copy; 2011 JavaJam Coffee House</small></em> <br />
<a href="mailto:charlotte@gmail.com">charlotte@gmail.com</a></div>
</body>
</html>

Menu

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaJam Coffee House</title>
<link rel="stylesheet" type="text/css" href="javajamcss.css"/>
</head>

<body>
<h1>JavaJam Coffee House Menu</h1>
<div id="nav"><p><a href="index.html">Home</a> <a href="menu.html">Menu</a> <a href="music.html">Music</a> <a href="jobs.html">Jobs</a></p></div>
<div id="content"><br />
<dl>
<dt><b>Just Java</b></dt>
<dd>Regular house blend, decaffeinated coffee or flavour of the day.<br />
Endless cup $2.00</dd>
<dt><b>Cafe au lait</b></dt>
<dd>House blended coffee infused into a smooth, steamed milk<br />
Single $2.00 Double $4.00</dd>
<dt><b>Iced Cappaccino</b></dt>
<dd>Sweetened espresso blended with icy-cold milk and served in a chilled glass<br />
$4.75</dd>
</dl><br /></div>
<div id="footer"><em><small>Copyright &copy; 2011 JavaJam Coffee House</small></em> <br />
<a href="mailto:charlotte@gmail.com">charlotte@gmail.com</a></div>
</body>
</html>

No comments:

Post a Comment