HTML Tags Flashcards

Learn HTML

1
Q

input

A

The input tag specifies an input field where the user can enter data.

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

a

A

The a tag defines a hyperlink, which is used to link from one page to another.

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

article

A

The article tag specifies independent, self-contained content.

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

b

A

The b tag specifies bold text.

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

body

A

The body tag defines the document’s body.

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

br

A

The br tag inserts a single line break.

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

button

A

The button tag defines a clickable button.

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

div

A

The div tag defines a division or a section in an HTML document.

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

em

A

The em tag is a phrase tag. It renders as emphasized text.

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

embed

A

The embed tag defines a container for an external application or interactive content (a plug-in).

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

fieldset

A

The fieldset tag is used to group related elements in a form.

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

footer

A

The footer tag defines a footer for a document or section.

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

form

A

The form tag is used to create an HTML form for user input.

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

h1 - h6>

A

The h1 to h6 tags are used to define HTML headings.

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

head

A

The head element is a container for all the head elements. The element can include a title for the document, scripts, styles, meta information, and more.

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

header

A

The header element represents a container for introductory content or a set of navigational links.

17
Q

hr

A

The hr tag defines a thematic break in an HTML page (e.g. a shift of topic).

18
Q

HTML

A

The HTML tag tells the browser that this is an HTML document.

The HTML tag represents the root of an HTML document.

The HTML tag is the container for all other HTML elements

19
Q

i

A

The i tag defines a part of text in an alternate voice or mood. The content of the itag is usually displayed in italic

20
Q

iframe

A

The iframe tag specifies an inline frame.

21
Q

img

A

The img tag defines an image in an HTML page.

The img tag has two required attributes: src and alt.

22
Q

input

A

The input tag specifies an input field where the user can enter data.

input elements are used within a form element to declare input controls that allow users to input data.

23
Q

label

A

The label tag defines a label for an input element.

The label element does not render as anything special for the user. However, it provides a usability improvement for mouse users, because if the user clicks on the text within the label element, it toggles the control.

24
Q

legend

A

The legend tag defines a caption for the fieldset element.

25
Q

link

A

The legend tag defines a caption for the fieldset element.

26
Q

main

A

The main tag specifies the main content of a document.

The content inside the main element should be unique to the document. It should not contain any content that is repeated across documents such as sidebars, navigation links, copyright information, site logos, and search forms.

Note: There must not be more than one main element in a document. The main element must NOT be a descendant of an article, aside, footer, header, or nav element.

27
Q

nav

A

The nav tag defines a set of navigation links.