HTML and CSS Reference
In-Depth Information
T he Head F irst
L ounge HTM L
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Head First Lounge</title>
<style>
h1, h2 {
font-family: sans-serif;
color: gray;
}
h1 {
border-bottom: 1px solid black;
}
p {
color: maroon;
}
</style>
</head>
<body>
<h1> Welcome to the Head First Lounge </h1>
<p>
<img src="images/drinks.gif" alt="Drinks">
</p>
<p>
Join us any evening for refreshing
<a href="beverages/elixir.html"> elixirs </a>,
conversation and maybe a game or two
of <em> Dance Dance Revolution </em> .
Wireless access is always provided;
BYOWS (Bring your own web server).
</p>
<h2>Directions</h2>
<p>
You'll find us right in the center of downtown
Webville. If you need help finding us, check out our
<a href="about/directions.html"> detailed directions </a>.
Come join us!
</p>
</body>
</html>
Search WWH ::




Custom Search