HTML and CSS Reference
In-Depth Information
It's time to put all your new knowledge to work. You'll notice that at the bottom of the
lounge, there's a small section with copyright information that acts as a footer for the
page. Add a <div> to make this into its own logical section. After you've done that,
style it with these properties:
Let's make the text really small.
You know, FINE PRIN T.
And let's center the text.
font-size: 50%;
text-align: center;
line-height: normal;
margin-top: 30px;
Pl ace < div> tags
ar ound the copyr ight
in form ation .
<div id="footer">
<p>
&copy; 2012, Head First Lounge<br>
All trademarks and registered trademarks appearing on
this site are the property of their respective owners.
</p>
</div>
And here's the CSS for the footer.
#footer {
font-size: 50%;
text-align: center;
line-height: normal;
margin-top: 30px;
}
Search WWH ::




Custom Search