001 Basic Tags Flashcards
1
Q
Define the type of document.
A
<!DOCTYPE html>
2
Q
Open and close the HTML section, which describes the web page.
A
3
Q
Open and close the visible page content.
A
4
Q
Set character set.
A
5
Q
Open and close heading one.
A
<h1> </h1>
6
Q
Open and close heading two (subheading).
A
<h2> </h2>
7
Q
Open and close paragraph.
A
<p> </p>
8
Q
Ordered list.
A
<ol> </ol>
9
Q
List item.
A
<li> </li>
10
Q
Un-ordered list.
A
<ul> </ul>
11
Q
Emphasis/italics.
A
<em> </em>
12
Q
Bold.
A
<strong> </strong>
13
Q
Definition list.
A
<dl> </dl>
14
Q
Definition term (child of definition list).
A
<dt> </dt>
15
Q
Definition details (child of definition list).
A
<dd> </dt>
</dd>