HTML terms Flashcards

1
Q

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

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
3
Q

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
4
Q

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
5
Q

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
6
Q

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
7
Q

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
8
Q

Docytype

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
9
Q

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
10
Q

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
11
Q

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
12
Q

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
13
Q

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
14
Q

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
15
Q

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
16
Q

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.

17
Q

Parent Element

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.

18
Q

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.

19
Q

Tag

A

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

20
Q

URL

A

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

21
Q

W3C

A

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