Previously, we learned the <h1> and <p> tags.
This is a horizonal rule:
Use the <marquee> tag to create a marquee
This is a hyperlink. Use the <a> tag to create a hyperlink.
Specify where the link will go by putting href="URL_GOES_HERE" inside the opening tag.
You can use a div to delineate sections within your website. For example, If I want only this section of examples to contain a background color, I could surround it by a div labeled with an id Then, in the style.css file, add a special rule to only that div.
EXAMPLE:
<div id="gideon">
<hr>
ALL OF
YOUR CODE
GOES HERE
<hr>
</div>