Module 04-01 Introduction to HTML & CSS Flashcards

1
Q

What provides the basic structure or markup of a document?

A

HTML

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

What provides the basic structure or markup of a document?

A

HTML

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

What provides the formatting of the document to control presentation and layout?

A

CSS

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

What provides behavior to the document?

A

JavaScript

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

What does HTML stand for?

A

Hyper Text Markup Language

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

What is the first line of every HTML document?

A

and

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

What is contained in the ?

A

Metadata such as the author, description, and links to JavaScript or CSS files that should be applied.

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

The content of the page is inside what tag?

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

What do <ul> and </ul><ol> represent?</ol>

A

Unordered and Ordered Lists

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

What do <ul> and </ul><ol> represent?</ol>

A

Unordered and Ordered Lists

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

What provides the formatting of the document to control presentation and layout?

A

CSS

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

What provides behavior to the document?

A

JavaScript

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

What does HTML stand for?

A

Hyper Text Markup Language

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

What is the first line of every HTML document?

A

and

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

What is contained in the ?

A

Metadata such as the author, description, and links to JavaScript or CSS files that should be applied.

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

The content of the page is inside what tag?

A
17
Q

What is an HTML attribute?

A

An addition value that configures the element or adjusts its behavior. Either global or single use.

18
Q

What are the two parts of a style declaration in CSS?

A

A property and a value

19
Q

What two attributes does a element have?

A

action: the URL that processes the form submission & method: the HTTP method to submit the form with (POST or GET)

20
Q

What are two important attributes of the element?

A

Name (key) and Type

21
Q

What is Semantic HTML

A

HTML that uses meaningful names like instead of <div> to give context and meaning to the code, making it more accessible</div>

22
Q

Can a page have multiple headers?

A

Yes

23
Q

Can a page have multiple footers?

A

Yes

24
Q

Can a page have multiple elements?

A

No

25
Q

What does CSS stand for?

A

Cascading Style Sheets

26
Q

What is the most basic kind of CSS selector?

A

A type selector (body, h1, p, etc.)

27
Q

What are the two parts of a style declaration in CSS?

A

A property and a value