001 Basic Tags Flashcards
Define the type of document.
<!DOCTYPE html>
Open and close the HTML section, which describes the web page.
Open and close the visible page content.
Set character set.
Open and close heading one.
<h1> </h1>
Open and close heading two (subheading).
<h2> </h2>
Open and close paragraph.
<p> </p>
Ordered list.
<ol> </ol>
List item.
<li> </li>
Un-ordered list.
<ul> </ul>
Emphasis/italics.
<em> </em>
Bold.
<strong> </strong>
Definition list.
<dl> </dl>
Definition term (child of definition list).
<dt> </dt>
Definition details (child of definition list).
<dd> </dt>
</dd>
Image tag.
<img></img>
Self-close because no text goes between tags.
Sourced image tag.
<img></img>
Sourced image tag with non-loaded image text.
<img></img>
Sourced web image tag.
<img></img>
DON’T DO THIS; IT MAKES OTHERS PAY FOR YOUR BANDWIDTH. THIS IS CALLED HOTLINKING AND IS A BIG NO-NO.