Semantics in HTML Day 4 Flashcards

1
Q

what does a paragraph tag do?

A

<p>A paragraph tag is used to wrap a multi-line body of text</p>

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

what does a heading1 tag do and how many heading tags are there?

A

<h1>A heading1 tag is used to denote the largest title on the page</h1>

there are six heading tags

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

what are lists?

A

Lists are used to contain a series of list elements. These may be ordered or unordered but must contain at least one element. There are three different types of HTML list tags

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

how do you denote a unordered list?

A
<ul>
    <li>Unordered List</li>
    <li>Ordered List</li>
    <li>Definition List</li>
</ul>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

how do you denote an ordered list?

A
<ol>
    <li>First</li>
    <li>Second</li>
    <li>Third</li>
</ol>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is a definition list and how do you denote it?

A

it is used to hold definition data and term elements.

<dl>
<dt>Unordered List</dt>
<dd>An HTML element made up of list elements in no particular order</dd>
<dt>Ordered List</dt>
<dd>An HTML element made up of list elements in order</dd>
<dt>Definiton List</dt>
<dd>An HTML element with definition term and definition data elements</dd>
</dl>

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

how do you denote a link?

A

using anchor tags:

<a>App Academy</a>

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

how do you denote a image tag?

A

‘<img></img>`

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