Tags - ANSWER✔✔-Tags can be used for images and video but most are
used to describe the content they surround to help modify and style
content later. Descriptive well-chosen tags are one key to high-quality web
development.
<h1> to <h6> - ANSWER✔✔-Heading and sub-heading tags used to
change the size of the font. <h1> being the largest, <h6> being the smallest.
<p>, <span> <div> - ANSWER✔✔-All used to specify text or blocks.
(search for the definition of each in the set)
<em> - ANSWER✔✔-used to emphasize text. when surrounding a word or
sentence, italicizes the font.
<strong> - ANSWER✔✔-used to emphasize text. When surrounding a
word, phrase or sentences, bolds the font.
<br /> - ANSWER✔✔-self closing tag that breaks the line. similar to \n in
python.
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 1/7
, <nav> </nav> - ANSWER✔✔-used to wrap links that can be local or on
another page, in order to organize the content on your web page.
<div> </div> - ANSWER✔✔-non semantic tag (doesn't describe the
content inside) used to create a divides a block of code in HTML to be able
to easily format on CSS later.
<ul> </ul> - ANSWER✔✔-create an unordered list, usually with bullets.
You can add the items to the list using the <li></li> tags.
<ol> </ol> - ANSWER✔✔-used to create an ordered list, numbered list.
You can add the items to the list using <li></li>
Adding LInks - ANSWER✔✔-<a href="https://website.org/Brown_bear"
target="_blank">Learn More</a>
Ordered list code - ANSWER✔✔-<ol>
<li>Chicken</li>
<li>Turkey</li>
<li>Tuna</li>
</ol>
Copyright ©EMILLYCHARLOTE 2025 ACADEMIC YEAR, ALL RIGHTS RESERVED. Page 2/7