Lesson 3 Flashcards

1
Q

This is the standard markup language used to create web pages, defining the structure of information through various tags and attributes.

A

HTML

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

This organization establishes standards for web technologies, including HTML and CSS, with the most current standard being HTML 4.01.

A

World Wide Web Consortium (W3C)

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

This basic tool is used for writing HTML documents, such as Notepad.

A

Plain Text Editor

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

This tool is used for testing and viewing web pages created with HTML.

A

Web Browser

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

These tags are enclosed in angle brackets and define the HTML document.

A

<html> ... </html>

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

This tag is used to center elements on the page.

A

<CENTER>
</CENTER>

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

This tag contains metadata, including the title displayed in the browser’s title bar.

A

<head> ... </head>

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

These tags denote the importance of topics on the page, ranging from <H1> to <H6>, with <H1> being the largest.

A

Header Tags (<H1> to <H6>)

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

This tag defines paragraphs and separates text with a line break.

A

<p>
</p>

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

These physical tags format text to be bold, italic, and add line breaks or horizontal rules.

A

<b>, <i>, <br></br>, <HR></i></b>

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

This type of list uses bullets to present items and is created with the tags <UL> and <LI>.

A

Unordered List

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

This type of list uses numbers to present items in a specific order, created with the tags <OL> and <LI>.

A

Ordered List

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

This type of list is used for terms and definitions, created with the tags <DL>, <DT>, and <DD>.

A

Definition List

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