HTML and CSS Reference
In-Depth Information
Okay, I think we've
got it now. Let's get that
doctype in the lounge files and
update these pages to HTML5.
Adding the document type definition
Enough talk, let's get that doctype in the HTML.
Her e's the doctyp e line. Just
add it as the ver y first thing
in t he “lou nge.htm l” file.
You can write D OCTYPE
or doctype. Bot h work.
<!doctype html>
<html>
<head>
<title> Head First Lounge </title>
</head>
<body>
<h1> Welcome to the New and Improved Head First Lounge </h1>
<img src="drinks.gif">
<p>
Join us any evening for refreshing
<a href="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="directions.html"> detailed directions </a>.
Come join us!
</p>
</body>
</html>
 
Search WWH ::




Custom Search