Lesson 3 Flashcards

1
Q

Article Element

A

Defines a part of an HTML document that consists of a self-contained composition” that is independent from the rest of the content in the document.”

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

Aside Element

A

Is used to set off content that’s related to the current topic but would interrupt the flow of the document if left inline. Essentially, the aside element is used for information that lends itself to sidebars and notes.

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

Autofocus Attribute

A

Moves the focus to a particular input field when a Web page loads.

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

Automatic Validation

A

Of input, which means the browser checks the data the user inputs.

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

Client-side Validation

A

Because the input data is validated before submission to the server.

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

Datalist Element

A

Enables you to present the user with a drop-down list of options to select from.

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

Email Attribute

A

Requires the user to enter an email address.

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

Footer Element

A

Defines a footer for a document or section, and typically contains information about the document or section, such as the author name, copyright data, links to related documents, and so on.

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

Form Input

A

Is the information a user enters into fields in a Web or client application form.

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

Global Attribute

A

Which means they can be used with any HTML element.

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

Header Element

A

Defines a header for a document, section, or article.

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

Menu Element

A

Which presents a list (or menu) of commands, usually with buttons. The W3C prefers that you use the menu element only for context menus, lists of form controls and commands, toolbars, and similar items.

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

Nav Element

A

Defines a block of navigation links. The nav element is useful for creating a set of navigation links as your document’s primary navigation, a table of contents, bread-crumbs in a footer, or Previous-Home-Next links.

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

Ordered List

A

Orders the list entries using numbers, by default. It uses the <ol> tag.</ol>

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

Pattern Attribute

A

Provides a format (a regular expression) for an input field, which is used to validate whatever is entered into the field.

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

Placeholder Text

A

Is text displayed inside an input field when the field is empty. It helps users understand the type of information they should enter or select. When you click on or tab to the input field and start typing, the newly entered text.

17
Q

Required Attribute

A

Requires information in a field when the form is submitted.

18
Q

Section Element

A

Defines a section in a document, such as a chapter, parts of a thesis, or parts of a Web page whose content is distinct from each other.

19
Q

Semantic Markup

A

Which gives better meaning, or definition, to several tags so they make more sense to humans, programs, and Web browsers.

20
Q

Server-side Validation

A

If the user enters the wrong type of data into a field, such as an email address in a field with the url attribute, the browser instructs the user to enter a valid URL. Let’s look at examples of the default error messages that are generated during automatic validation.

21
Q

Table

A

Give structure to specific information in HTML documents. A table contains rows and columns, and displays data in a grid.

22
Q

Unordered List

A

Displays list entries in a bulleted list. It uses a <ul> tag. Items in a list are marked by <li>, which indicates an ordinary list item.</li></ul>

23
Q

Validation

A

Is the process of verifying that information entered or captured in a form is in the correct format and usable before sending the data to the server. Some things that are verified during validation are: Required fields are empty, Email addresses are valid, Dates are valid, Text does not appear in a numeric field or vice versa.

24
Q

Web Form

A

Is a Web page that provides input fields for a user to enter data, which is sent to a server for processing.