HTML & CSS In Pictures
HTML Basics
Navigation & Layout
Interactivity
Advanced Layout
Below the
<body>
tag, put a
<div>
tag:
<body>
<div>
Add the attribute
id="links"
:
<body>
<div
id="links"
>
Close the
<div>
tag:
<body>
<div id="links">
</div>
Add the word
Links
, so it's enclosed by the
<div>
tags:
<body>
<div id="links">
Links
</div>
<< BACK
NEXT >>