Intro to HTML and CSS Flashcards

1
Q

HTML (HyperText Markup Language)

A
  1. HTML is the standard markup language for Web Pages.
  2. HTML defines the structure of a web page.
  3. HTML defines a document that will be displayed by a web browser.
  4. HTML uses <> tags to represent elements that are the building blocks for a web page.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

HyperText

A

Is text displayed by a device that has references (links) to other text that the reader can immediately access.

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

Markup Language

A

Is a system for annotating a document in a way that syntactically distinguishes how to display the document and the content. When displayed Markup Language is not shown, instead it defines how to format the content.

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

HTTP or HyperText Transfer Protocol

A

HTTP is the primary protocol used to transfer HTML documents on the web.

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

HTML: Document Structure

A
  1. Document Type Declaration (DTD).
  2. HTML Element.
  3. Document HEAD.
  4. Document BODY.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Document Type Declaration (DTD)

A

A simple declaration the identifies the document’s type. For HTML, it will always be . While it should always be included, if it is omitted most browsers will default to HTML.

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

HTML Element

A

Wraps all the other elements on the page, defining the scope of the document. It is often referred to as the root element.

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

Document HEAD

A

Contains meta information about the document and defines other files you want to include on the page, such as JavaScript or CSS. It does not contain content.

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

Document BODY

A

Contains all the content of the page, like text, images, videos, etc.

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

HTML tag attributes

A

Key=”value” pairs applied to the starting tag. Tags can have 0…n attributes.

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

Semantic HTML

A

Clearly describes its meaning to both the browser and the developer.

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