HTML TAGS Flashcards

1
Q

What is a ?

A

Heading tag

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

What is a <p>?</p>

A

Paragraph tag

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

What is ?

A

A declaration tag (tells the browser that the following is in HTML)

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

What is the use of the tag?

A

Contains instructions for the browser. It can point to resources, like custom fonts or scripts, but doesn’t actually contain content that the user will see on the page.

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

What is the use of the tag?

A

Where all the content goes.

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

What does the <img></img> tag do?

A

It prints am image to the webpages

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

What is one of the unique things about the <img></img> tag?

A

They are self contained tags and don’t need a closing tag.

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

What is an anchor tag (<a>)?</a>

A

It defines a hyperlink

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

What attribute does a <a> tag have?</a>

A

They have an “href” (hyperlink reference)

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

Example of an <a> tag.</a>

A

<a>Click here to visit Baby’s First Website!</a>

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

What are some of the things that anchor tags can link to?

A

Documents, files, email links, and more

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

What are the two types of list tags?

A

Unordered list (<ul>) and ordered lists (</ul><ol>)</ol>

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

What is the difference between the two list tags?

A

Unordered lists are bullet points and ordered lists are numbered lists.

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

How do we differentiate between each item on the list?

A

With the <li> tag (list item)</li>

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

What is an example of a list in HTML?

A
<ul>
     <li>Item one</li>
     <li>Item two</li>
     <li>Item three</li>
</ul>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are some of the tags that are in the table?

A

There is the table header , table row , each cell .

17
Q

What is the element?

A

It can be an image, illustration, diagram, code snippet, etc. Will often have a describing its contents or adding more detail.

18
Q

What is an example of .

A

<img></img>

      fig. 1: chonk in its natural habitat
19
Q

What is a <blockquote> used for?</blockquote>

A

To mark up an extended quotation. Can be used alongside the cite attribute, which indicates a source. (Mostly used for indexing)

i.e. <blockquote><p>Pee Pee Island is a small island located in the province of Newfoundland and Labrador in the far east of Canada. Shortly after the incorporation, the name of the island was changed from “Pebble Island” to its current name.</p></blockquote>