HTML Terms Flashcards

1
Q

What is an attribute?

A

An HTML element property that provides additional information or functionality for an element. Attributes appear as a name/value pair with the value contained in quotation marks.

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

What is an attribute?

A

An HTML element property that provides additional information or functionality for an element. Attributes appear as a name/value pair with the value contained in quotation marks.

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

What is a block-level element?

A

HTML tags that create blocks of content within the document such as headings and paragraphs. Block-level elements typically stack one on top of each other based on the order they appear in the code.

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

What is a child element?

A

Any HTML element that is contained inside another HTML element. Child element tags must close before their parent element tags.

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

What is a closing tag?

A

Appears after an element’s content and indicates the end of an element. Is identical to an element’s opening tag with the addition of a forward slash (/) prior to the tag’s character.

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

What is a comment?

A

Reference information added to the code. May include an overview of more complex code, a reminder for future authors, or communications within a team.

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

What is CMS?

A

CMS is short for Content Management System, and refers to any system designed to allow users to create and maintain content. For the web, it primarily refers to software designed to manage web sites and their content. Examples include Joomla! and WordPress.

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

What is CSS?

A

Cascading Style Sheets (CSS) is a presentation language used to control the presentation and layout of web pages

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

What is a Doctype?

A

Short for Document Type Declaration. Appears at the top of all HTML documents to trigger standards mode and identifies the version of HTML used by the document

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

What is the DOM?

A

The DOM, or Document Object Model, is a representation of documents like HTML. The DOM can be thought of as an outline where tags are represented by “nodes.” Scripting languages like JavaScript reference the DOM when accessing or modifying page content.

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

What are elements?

A

HTML elements consist of an HTML tag, used to identify the content, and the content itself. Is often used interchangeably with the term “tags” although technically tags only refer to the tag itself.

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

What is FTP?

A

FTP stands for File Transfer Protocol. It’s a common protocol used for transferring large files from one server to another.

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

What is HTTP?

A

HTTP, or Hypertext Transfer Protocol, controls the formatting and transmission of HTML pages across web servers.

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

What are inline-level elements?

A

Elements that appear within the normal flow of text. Unlike block-level elements, inline-level elements do not start new lines within the normal document flow.

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

What is JavaScript?

A

Scripting language developed by Netscape and used to control much of the functionality and behavior on the web.

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

What is Metadata?

A

Additional information about the document or document content, typically stored in meta tags.

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

What is MIME Type?

A

Short for Multipurpose Internet Mail Extension, MIME types are used to tell user agents what type of program a file or extension is. Without a proper MIME type, user agents can have trouble properly running applications or processing files.

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

What are parent elements?

A

An HTML element that contains another element. It is possible for an element to be a child of one element and the parent of another.

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

What is a replaced element?

A

Any HTML element where the contents of the element are replaced by something else. Examples would be images, video, or other plug-in content.

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

What are tags?

A

Markup characters that indicate what type of content appear on the page. Most tags consist of both an opening and closing tag.

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

What is a URL?

A

URL stands for Uniform Resource Locator. It serves as the address of a document or other resource on the web.

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

What is the W3C?

A

The W3C, or World Wide Web Consortium, is the standards body responsible for authoring the HTML specification.

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

A

” double quotation mark

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

&

A

& ampersand

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

A

⟨ left-angle bracket

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

A

⟩ right-angle bracket

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

A

< less than symbol

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

>

A

>

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

non-breaking white space

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

A

’ apostrophe

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

A

“ left double quote

32
Q

A

” right double quote

33
Q

«

A

« left-pointing double angle quotation mark

34
Q

®

A

® registered sign

35
Q

©

A

© copyright symbol

36
Q

A

™ trademark symbol

37
Q

A

⁄ fraction slash

38
Q

A

– en dash

39
Q

A

— em dash

40
Q

What is a block-level element?

A

HTML tags that create blocks of content within the document such as headings and paragraphs. Block-level elements typically stack one on top of each other based on the order they appear in the code.

41
Q

What is a child element?

A

Any HTML element that is contained inside another HTML element. Child element tags must close before their parent element tags.

42
Q

What is a closing tag?

A

Appears after an element’s content and indicates the end of an element. Is identical to an element’s opening tag with the addition of a forward slash (/) prior to the tag’s character.

43
Q

What is a comment?

A

Reference information added to the code. May include an overview of more complex code, a reminder for future authors, or communications within a team.

44
Q

What is CMS?

A

CMS is short for Content Management System, and refers to any system designed to allow users to create and maintain content. For the web, it primarily refers to software designed to manage web sites and their content. Examples include Joomla! and WordPress.

45
Q

What is CSS?

A

Cascading Style Sheets (CSS) is a presentation language used to control the presentation and layout of web pages

46
Q

What is a Doctype?

A

Short for Document Type Declaration. Appears at the top of all HTML documents to trigger standards mode and identifies the version of HTML used by the document

47
Q

What is the DOM?

A

The DOM, or Document Object Model, is a representation of documents like HTML. The DOM can be thought of as an outline where tags are represented by “nodes.” Scripting languages like JavaScript reference the DOM when accessing or modifying page content.

48
Q

What are elements?

A

HTML elements consist of an HTML tag, used to identify the content, and the content itself. Is often used interchangeably with the term “tags” although technically tags only refer to the tag itself.

49
Q

What is FTP?

A

FTP stands for File Transfer Protocol. It’s a common protocol used for transferring large files from one server to another.

50
Q

What is HTTP?

A

HTTP, or Hypertext Transfer Protocol, controls the formatting and transmission of HTML pages across web servers.

51
Q

What are inline-level elements?

A

Elements that appear within the normal flow of text. Unlike block-level elements, inline-level elements do not start new lines within the normal document flow.

52
Q

What is JavaScript?

A

Scripting language developed by Netscape and used to control much of the functionality and behavior on the web.

53
Q

What is Metadata?

A

Additional information about the document or document content, typically stored in meta tags.

54
Q

What is MIME Type?

A

Short for Multipurpose Internet Mail Extension, MIME types are used to tell user agents what type of program a file or extension is. Without a proper MIME type, user agents can have trouble properly running applications or processing files.

55
Q

What are parent elements?

A

An HTML element that contains another element. It is possible for an element to be a child of one element and the parent of another.

56
Q

What is a replaced element?

A

Any HTML element where the contents of the element are replaced by something else. Examples would be images, video, or other plug-in content.

57
Q

What are tags?

A

Markup characters that indicate what type of content appear on the page. Most tags consist of both an opening and closing tag.

58
Q

What is a URL?

A

URL stands for Uniform Resource Locator. It serves as the address of a document or other resource on the web.

59
Q

What is the W3C?

A

The W3C, or World Wide Web Consortium, is the standards body responsible for authoring the HTML specification.

60
Q

A

” double quotation mark

61
Q

&

A

& ampersand

62
Q

A

⟨ left-angle bracket

63
Q

A

⟩ right-angle bracket

64
Q

A

< less than symbol

65
Q

>

A

>

greater than symbol
66
Q
A

non-breaking white space

67
Q

A

’ apostrophe

68
Q

A

“ left double quote

69
Q

A

” right double quote

70
Q

«

A

« left-pointing double angle quotation mark

71
Q

®

A

® registered sign

72
Q

©

A

© copyright symbol

73
Q

A

™ trademark symbol

74
Q

A

⁄ fraction slash

75
Q

A

– en dash

76
Q

A

— em dash