HTML Flashcards

1
Q

What is HTML?

A

HTML stands for Hyper Text Markup Language
HTML is the standard markup language for creating Web pages
HTML describes the structure of a Web page
HTML consists of a series of elements
HTML elements tell the browser how to display the content
HTML elements label pieces of content such as “this is a heading”, “this is a paragraph”, “this is a link”, etc.

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

What is the <!Doctype> declaration?

A

The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly.

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

What is the tag used to input a link?

A

HTML links are defined with the <a> tag.
Example:<a>This is a link</a></a>

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

What is the <pre></pre> element used for?

A

The HTML <pre> element defines preformatted text.

The text inside a <pre> element is displayed in a fixed-width font (usually Courier), and it preserves both spaces and line breaks

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