HTML Flashcards

1
Q

What’s HTML’s tag syntax?

A

Inner HTML content

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

What are the h1 to h6 tags used for?

A

They are used for text headings, to signify the importance of content below them. The lower the number, the higher the importance.

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

What’s to be noted about h1 and the other headings?

A

Only use one h1 element per page and place lower importance headings below higher importance headings.

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

What is the p tag for?

A

It’s used to create paragrahps of text on websites.

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

In HTML, how are comments added to a file?

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

In HTML what is the tag for?

A

It’s one of HTML5’s new ways of making the code easier to read by coders and SEO engines.

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

In HTML5, how many spaces should child elements be indented?

A

2 more that the parent element.

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

What are HTML entities?

What is their general layout?

A

Reserved characters in HTML must be replaced with character entities.

Some characters are reserved in HTML.

If you use the less than (<) or greater than (>) signs in your text, the browser might mix them with tags.

Character entities are used to display reserved characters in HTML.

A character entity looks like this:

&entity_name;

OR

entity_number;

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