HTML Skeleton & Syntax Flashcards

1
Q

Where do you put non-visible content about the HTML document?

A

In between the opening and closing tags of the head element

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

Where do you put visible content about the HTML document?

A

In between the opening and closing tags of the body element

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

Where do the < head > and < body > tags go in a valid HTML document?

A

In between the opening and closing tags of the html element

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

What is the purpose of a < !DOCTYPE > declaration?

A

To let the browser know what kind of version and type of HTML is used for the web document in order for the browser to run the web page correctly

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

What is the purpose of HTML attributes?

A

To give extra information about the contents of the element. It is made of 2 parts: a name and a value.

Additional values that configure the elements or adjust their behavior in various ways to meet the criteria the users want.

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

What is an HTML entity?

A

Is a piece of text (“string”) that begins with an ampersand ( & ) and ends with a semicolon

Specials codes to show symbols that are used to display characters that are reserved by HTML code

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

What does HTML stand for and what is it?

A

The HyperText Markup Language = is the standard markup language for documents designed to be displayed in a web browser.

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

What are some examples of an HTML entity?

A

Starts with & and ends with ;
Can be used by entity name or entity number.

<	less than & lt;	& #60;
>	greater than	& gt;	& #62;
&	ampersand	& amp;	& #38;
¢	cent 	& cent;	& #162;
©	copyright	& copy;	& #169;
®	registered trademark	& reg;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly