Final Exam Preparation Flashcards

1
Q

What are the three ways to add CSS to a webpage?

A
  1. Internal CSS
  2. Inline CSS
  3. External CSS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Explain: Description list with example.

A

The <dl> tag defines the description list,
the <dt> tag defines the term (name),
and the </dt><dd> tag describes each term.

Example:

<dl><dt>Coffee</dt><dd>- black hot drink</dd><dt>Milk</dt><dd>Chocolate Milk</dd></dl>

</dd></dl>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly