HTML and CSS Reference
In-Depth Information
You're closer to learning HTML than you think…
Here's the HTML for the Head First Lounge again. Take a look at the tags and see
if you can guess what they tell the browser about the content. Write your answers
in the space on the right; we've already done the first couple for you.
Tells t he browser this is the start of HTM L.
Start s the page “head” (more about this la ter).
<html>
<head>
<title> Head First Lounge </title>
</head>
<body>
<h1> Welcome to the Head First Lounge </h1>
<img src="drinks.gif">
<p>
Join us any evening for refreshing elixirs ,
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. Come join us!
</p>
</body>
</html>
 
Search WWH ::




Custom Search