HTML Flashcards

1
Q

-&lt-html-&gt–&lt-/html-&gt-

A

Starts and ends and HTML document.

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

-&lt-head-&gt–&lt-/head-&gt-

A

Starts and ends the head of the document which contains the title.

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

-&lt-title-&gt–&lt-/title-&gt-

A

Contains the title of the page that will be displayed by the browser.

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

-&lt-body-&gt–&lt-/body-&gt-

A

Contains all of the elements contained in the browser window.

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

-&lt-p-&gt–&lt-/p-&gt-

A

Begins a paragraph of text.

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

-&lt-h1-&gt–&lt-/h1-&gt-

A

Heading markup. Heading are 1 through 6 with 1 being the largest.

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

-&lt-b-&gt–&lt-/b-&gt-

A

Bold markup.

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

-&lt-i-&gt–&lt-/i-&gt-

A

Italicized markup.

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

-&lt-br /-&gt-

A

Creates a break in the text/

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

-&lt-hr /-&gt-

A

Creates a horizontal rule in the text.

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

-&lt-sup-&gt–&lt-/sup-&gt-

A

Creates a superscript.

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

-&lt-sub-&gt–&lt-/sub-&gt-

A

Creates a subscript.

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

-&lt-strong-&gt–&lt-/strong-&gt-

A

Semantic for strong emphasis. Usually bolded.

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

-&lt-em-&gt–&lt-/em-&gt-

A

Semantic emphasis. Usually italicized.

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

-&lt-blockquote-&gt–&lt-/bolckquote-&gt-

A

Indicates a long quote. Usually is indented. -&lt-p-&gt–&lt-/p-&gt- should be used inside of the blockquote code.

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

cite=”URL”

A

The cite attribute to cite where the quote is from and where more information can be found.

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

-&lt-abbr-&gt–&lt-/abbr-&gt-

A

Semantic for an abbreviation or an acronym.

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

-&lt-cite-&gt–&lt-/cite-&gt-

A

Semantic for citing a book, film, or research article.

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

-&lt-dfn-&gt–&lt-/dfn-&gt-

A

Semantic for a definition. Sometimes italicized.

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

-&lt-q-&gt–&lt-/q-&gt-

A

Semantic for a quote. Sometimes put in quotations but not always, so use CSS for the formatting.

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

-&lt-ins-&gt–&lt-/ins-&gt-

A

Semantic to show content that has been inserted in to a document. Usually underlined.

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

-&lt-del-&gt–&lt-/del-&gt-

A

Semantic to show content that has been deleted from a document. Usually strike through.

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

-&lt-s-&gt–&lt-/s-&gt-

A

Semantic for text that is outdated and should be deleted. Usually striked through.

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

-&lt-ol-&gt–&lt-/ol-&gt-

A

Ordered list. Contains items within.

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

-&lt-li-&gt–&lt-/li-&gt-

A

Items within an ordered or unordered list.

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

-&lt-ul-&gt–&lt-/ul-&gt-

A

Unordered list. Contains items within.

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

-&lt-dl-&gt–&lt-/dl-&gt-

A

Definition list with terms and definitions within.

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

-&lt-dt-&gt–&lt-/dt-&gt-

A

Definition term within a definition list.

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

-&lt-dd-&gt–&lt-/dd-&gt-

A

Definition of a term. Used after a definition term is declared.

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

-&lt-a href=”URL”-&gt-Text-&lt-/a-&gt-

A

Code for writing a link. The a sets the link apart. HREF identifies where the link is, and the text is within the code. This is absolute citation.

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

-&lt-a href=”file.html”-&gt–&lt-/a-&gt-

A

HREF to go to a reference folder in the same file. This is a short hand citation.

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

-&lt-a href=”child/file.html”-&gt–&lt-/a-&gt-

A

HREF to go to a reference file in another folder one level down. This is also a shorthand citation.

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

-&lt-a href=”. . / index.html”-&gt–&lt-/a-&gt-

A

HREF to go to a parent page in a folder above where you are currently at. This is another shorthand citation.

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

id=”name”

A

Attribute placed in a markup to identify a location.

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

-&lt-a href=”#name”-&gt–&lt-/a-&gt-

A

HREF to a specific location on the current page.

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

-&lt-a href=”URL/#name”-&gt–&lt-/a-&gt-

A

HREF to a specific location on a different page.

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

-&lt-img src=”location” alt=”description” title=”more” /-&gt-

A

Code for inserting a picture into a webpage: “src” is the location (reference rules apply), “alt” is a description for people who cannot see the image, and “title” is more description for people who hover their mouse over the image.

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

height=”###” width=”###”

A

Specifies the size of the image by pixel dimensions.

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

-&lt-figure-&gt–&lt-/figure-&gt-

A

Allows you to attach a caption to an image. The img reference is placed within the figure code.

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

-&lt-figcaption-&gt–&lt-/figcaption-&gt-

A

Identifies the caption to be placed with the image.

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

-&lt-table-&gt–&lt-/table-&gt-

A

Identifies the beginning of a table.

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

-&lt-tr-&gt–&lt-/tr-&gt-

A

Identifies the beginning of a table row.

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

-&lt-td-&gt–&lt-/td-&gt-

A

Identifies table data within a row.

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

-&lt-th-&gt–&lt-/th-&gt-

A

Identifies a table heading.

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

colspan=”#”

A

Attribute identifying how many columns a data element should span.

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

rowspan=”#”

A

Attribute identifying how many columns a data element should span.

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

-&lt-thead-&gt–&lt-/thead-&gt-

A

Identifies the head of a table.

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

-&lt-tbody-&gt–&lt-/tbody-&gt-

A

Identifies the body of a table.

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

-&lt-tfoot-&gt–&lt-/tfoot-&gt-

A

Identifies the foot of the table.

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

-&lt-form-&gt–&lt-/form-&gt-

A

Declares a form.

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

action=”URL”

A

Form attribute that tells the form where to send it’s information.

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

method=”get”

A

Form attribute that tells the form how to send the information. The get method adds information to the URL specified. The get method is great for short firms such as search boxes, and for when you are retrieving information from a web server.

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

method=”post”

A

Sends values using HTTP headers. Use this method when forms are very long, files are being uploaded, contains sensitive information, adds or deletes information from a database.

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

size=”##”

A

Form attribute that tells the form how many characters should be visible.

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

maxlength=”##”

A

Form attribute that sets the max length of characters entered into a text field.

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

type=”text”

A

Form attribute that creates a single line text input

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

type=”password”

A

Form attribute that create a single line text of input that is blocked.

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

-&lt-textarea name=”name” cols=”#” rows=”#”-&gt–&lt-/textarea-&gt-

A

Declares a text area within a form. The cols and rows define the size of the area, and text can be placed in the area.

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

-&lt-input type=”radio” name=”name” value=”value” /-&gt-

A

Input code for a radio button. The value section indicates which value is sent to the serve location.

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

-&lt-input type=”checkbox” name=”name” value=”value” checked=”checked” /-&gt-

A

Input code for a check box. The name returns the name of the value to the server, and the value returns the value to the serve. The checked option will indicate that a box will already be checked when the page loads.

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

-&lt-select name=”name” size=”#” multiple=”multiple”-&gt–&lt-/select-&gt-

A

Input code for a drop down menu that lets a use select from a list of options. Size shows the number of options indicated, and multiple allows users to select more than one option by pressing control and then clicking on options/

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

-&lt-option value=”value” selected=”selected”-&gt–&lt-/option-&gt-

A

Indicates an option in a selection menu. The value is returned when it is selected, and the selected attribute indicates than an option will be selected when the page loads.

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

-&lt-input type=”file” name=”name” /-&gt-

A

Input that allows users to upload a file to the server.

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

-&lt-input type=”submit” name=”name” value=”Value” /-&gt-

A

Input that submits the form to the server. The name attribute is not really needed but can be used. The value attribute shows what text will be displayed on the button. It is useful to use the value function to specify the name.

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

-&lt-input type=”image” name=”name”-&gt-

A

Input submission type that uses an image as a submission.

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

-&lt-button-&gt-Text-&lt-/button-&gt-

A

Input form submission that allows designers to have more control over what buttons look like.

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

-&lt-input type=”hidden” name=”name” value=”value”-&gt-

A

Hidden inputs are not shown to the user but are submitted to the server to tell the server information like what page the user was on when they sent the information.

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

-&lt-label for=”Text”-&gt-Text-&lt-/label-&gt-

A

Label attribute is for vision impaired reading programmers. The for attribute indicates which radio button input the text is for. The value in the for text coincides with the id of the radio button.

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

-&lt-fieldset-&gt–&lt-legend-&gt-Table Name-&lt-/legend-&gt–&lt-/fieldset-&gt-

A

Field set puts form information into a table, and the legend code identifies the title of the form.

70
Q

-&lt-input type=”password” required=”required” /-&gt-

A

The required attribute validates that the form input is selected or inputted before being submitted.

71
Q

-&lt-input type=”date” name=”datetime” /-&gt-

A

The date type sets up a way for users to input a date in the form.

72
Q

type=”email”

A

The email type verifies that an email is entered.

73
Q

type=”url”

A

The url type receives a url for a website.

74
Q

type=”search”

A

The search type receives a search input from the user.

75
Q

placeholder=”text”

A

Placeholder attribute places text inside a text box or text field before users enter input.

76
Q

-&lt-!DOCTYPE html-&gt-

A

To be placed in the header of an html file to indicate to the browser that this is a HTML5 document type.

77
Q

id=”id”

A

The id attribute will identify the element uniquely for CSS markup later.

78
Q

class=”class”

A

The class attribute lumps several elements together for a CSS markup.

79
Q

-&lt-div id=”divheader” -&gt–&lt-/div-&gt-

A

The div element groups elements together. After defining a div, include the elements with in the brackets to block them together.

80
Q

-&lt-span id”spantype”-&gt–&lt-/span-&gt-

A

Groups elements together in a similar way as div but span groups elements inline.

81
Q

-&lt-iframe width=”##” height=”##” src=”url”-&gt–&lt-/iframe?-&gt-

A

Creates a frame in the page that shows another page based on the url provided. The width and height specify in pixels the sixe of the page. You can use the attribute seamless=”seamless” which removes scroll bars.

82
Q

-&lt-meta name=”attribute” content=”value” /-&gt-

A

Information about the page that is passed in the header. Description is a 155 character description of the page. Keywords is a comma-separated list of key word (not really used in SEO). Robot indicates if the page should be included in search: noindex means not includes, nofollow means include it but not any of the pages that it links too. Also, http-equiv attribute also gives more information instead of the name attribute. The pragma with no-cache content doesn’t allow the page to be stored and called back from the cache. The author content allows to tell who the author is. The expires content tells the browser when the page expires and when a new page should be found instead of calling from the cache. The content is the date and time.

83
Q

-&lt- -&gt-

A

Escape characters. There are a set of reserved characters in html, so if you want those characters to display you need to use escape characters. You can look up a list online of escape characters.

84
Q

-&lt-meta name=”viewport” content=”initial-scale=1”-&gt-

A

The syntax for setting the viewport for responsive sites. This is placed in the head of the document.

85
Q

-&lt-link rel=”icon” type=”image/png” href=”source” /-&gt-

A

The syntax for inserting a favicon for your site. The icon should be 16x16 pixels.

86
Q

-&lt-!DOCTYPE html-&gt-

A

Defines the HTML doc.

87
Q

-&lt-html-&gt–&lt-/html-&gt-

A

Describes the HTML Page.

88
Q

-&lt-head-&gt–&lt-/head-&gt-

A

Describes the head of the document.

89
Q

-&lt-body-&gt–&lt-/body-&gt-

A

Describes the body of the document.

90
Q

-&lt-p-&gt–&lt-/p-&gt-

A

Tag for a paragraph element.

91
Q

-&lt-h1-&gt–&lt-/h1-&gt-

A

Tag for heading elements. Heading go from H1 to H6.

92
Q

-&lt-a href=”URL”-&gt-Tex-&lt-/a-&gt-

A

Describes links. HREF is the destination URL.

93
Q

-&lt-img src=”URL” alt=”Image Title”-&gt-

A

The tag for defining an image. The ALT defines the text displayed if the picture does not display.

94
Q

class=”CLASS”

A

The class attribute. Can be applied to more than one element.

95
Q

id=”ID”

A

The ID attribute. Should be applied to one element.

96
Q

style=”STYLE”

A

Defines the CSS style of an element. CSS should really be used instead.

97
Q

title=”TITLE”

A

Gives extra information about the element that will be displayed as a tool tip.

98
Q

-&lt-hr-&gt-

A

Tag for a horizontal line.

99
Q

-&lt-!– Text —&gt-

A

The syntax for a comment in HTML.

100
Q

-&lt-br-&gt-

A

The line break tag.

101
Q

-&lt-b-&gt–&lt-/b-&gt-

A

The bold tag.

102
Q

-&lt-i-&gt–&lt-/i-&gt-

A

The italic tag.

103
Q

-&lt-strong-&gt–&lt-/strong-&gt-

A

The strong tag for importance.

104
Q

-&lt-em-&gt–&lt-/em-&gt-

A

The emphasis tag for emphasis.

105
Q

-&lt-small-&gt–&lt-/small-&gt-

A

Tags for smaller text.

106
Q

-&lt-sub-&gt–&lt-/sub-&gt-

A

Tags for subscript.

107
Q

-&lt-sup-&gt–&lt-/sup-&gt-

A

Tags for superscript.

108
Q

-&lt-ins-&gt–&lt-/ins-&gt-

A

Tags for inserted text.

109
Q

-&lt-del-&gt–&lt-/del-&gt-

A

Tags for deleted text. Sometimes rendered as a strikethrough text.

110
Q

-&lt-mar-&gt–&lt-mark-&gt-

A

Defines marked or highlighted text.

111
Q

-&lt-code-&gt–&lt-/code-&gt-

A

Defines computer code text. Nice for writing tutorials.

112
Q

-&lt-kbd-&gt–&lt-/kbd-&gt-

A

Defines keyboard text.

113
Q

-&lt-samp-&gt–&lt-/samp-&gt-

A

Defines sample keyboard text.

114
Q

-&lt-var-&gt–&lt-/var-&gt-

A

Defines a variable.

115
Q

-&lt-pre-&gt–&lt-/pre-&gt-

A

Defines preformatted text.

116
Q

-&lt-abbr-&gt–&lt-/abbr-&gt-

A

Defines an abbreviation or acronym.

117
Q

-&lt-address-&gt–&lt-/address-&gt-

A

Defines the contact info of the owner or the author of the page.

118
Q

-&lt-bdo dir=”rtl”-&gt–&lt-/bdo-&gt-

A

Defines the text direction. Use the DIR attribute to define the direction of the text. DIR values are “rtl” and “ltr”.

119
Q

-&lt-blockquote-&gt–&lt-/blockquote-&gt-

A

Defines a section that is a quote from another source.

120
Q

-&lt-q-&gt–&lt-/q-&gt-

A

Defines an inline or short quotation.

121
Q

-&lt-cite-&gt–&lt-/cite-&gt-

A

Defines the title of a work.

122
Q

-&lt-dfn-&gt–&lt-/dfn-&gt-

A

Defines a definition term in the text.

123
Q

download=”URL”

A

The download attribute that specifies a target to be downloaded.

124
Q

target=”_blank”

A

Attribute that specifies where to open the link. “_blank” is for opening in a new window. “_parent” opens in the parent frame. “_self” default but opens in the current frame. “framename” opens the link in the specified frame.

125
Q

href=”#anchor”

A

The syntax for moving to the anchor position on a page. The anchor is the id of the element.

126
Q

-&lt-title-&gt–&lt-/title-&gt-

A

Defines the title of the document.

127
Q

-&lt-base href=”URL” target=”_blank”-&gt-

A

Specifies the default for links on a page.

128
Q

-&lt-link-&gt-

A

The tag for linking an external document.

129
Q

-&lt-style type=”text/css”-&gt–&lt-/style-&gt-

A

The syntax for an inline style sheet.

130
Q

-&lt-script-&gt–&lt-/script-&gt-

A

The syntax for inline JS.

131
Q

-&lt-meta-&gt–&lt-/meta-&gt-

A

The syntax for information placed in the head tags.

132
Q

width=”42” height=”42”

A

The width and height attributes of elements (usually an image). Defined in pixels.

133
Q

usemap=”#map_name”

A

The map attribute used with an image.

134
Q

-&lt-map name=”map_name”-&gt–&lt-/map-&gt-

A

The map tag that defines click areas inside of an image.

135
Q

-&lt-area shape=”rect” coords=”0, 0, 82, 126” href=”URL” alt=”alt_name”-&gt–&lt-/area-&gt-

A

The syntax for defining a clickable area inside of map.

136
Q

shape=”rect”

A

The attribute that defines the shape of a clickable area. Values are rect, circle, and poly.

137
Q

coords=”x1, y1, x2, y2”

A

The attribute for specifying the location of a clickable area. The value for rect=”x1, y1, x2, y2”, circle=”x, y, radius”, poly=”xn, yn” and the last coordinate should be the first pair, if not the browser will close it for you.

138
Q

-&lt-table-&gt–&lt-/table-&gt-

A

Defines a table in the document.

139
Q

-&lt-th-&gt–&lt-/th-&gt-

A

Defines the header sell in a table.

140
Q

-&lt-tr-&gt–&lt-/tr-&gt-

A

Defines a row in a table.

141
Q

-&lt-td-&gt–&lt-/td-&gt-

A

Defines a cell in the table.

142
Q

-&lt-caption-&gt–&lt-/caption-&gt-

A

Defines a table caption.

143
Q

-&lt-thead-&gt–&lt-/thead-&gt-

A

Groups the header content in the table.

144
Q

-&lt-tbody-&gt–&lt-/tbody-&gt-

A

Groups the body content together.

145
Q

-&lt-tfoot-&gt–&lt-/tfoot-&gt-

A

Groups the footer content in a table.

146
Q

-&lt-ul-&gt–&lt-/ul-&gt-

A

Defines an unordered list.

147
Q

-&lt-li-&gt–&lt-/li-&gt-

A

Defines a list item.

148
Q

-&lt-ol-&gt–&lt-/ol-&gt-

A

defines an ordered list item.

149
Q

-&lt-dl-&gt–&lt-/dl-&gt-

A

Defines a description list.

150
Q

-&lt-dt-&gt–&lt-/dt-&gt-

A

Defines a definition term.

151
Q

-&lt-dd-&gt–&lt-/dd-&gt-

A

Defines a definition of a term

152
Q

-&lt-div-&gt–&lt-/div-&gt-

A

Defines a new block section.

153
Q

-&lt-span-&gt–&lt-/span-&gt-

A

Defines a new inline section.

154
Q

-&lt-form-&gt–&lt-/form-&gt-

A

Defines a form. Should include the attributes name, action, and method.

155
Q

-&lt-input-&gt-

A

Defines an input value.

156
Q

name=”name”

A

Attribute for form values. This name is passed with the value to server script.

157
Q

type=”test”

A

The attribute for a text form element.

158
Q

type=”password”

A

The attribute for a password element.

159
Q

type=”radio”

A

The attribute for a radio button.

160
Q

value=”value”

A

Defining the value to be passed if a form element is selected such as a radio button or a checkbox.

161
Q

type=”checkbox”

A

The attribute for a checkbox element.

162
Q

type=”submit” value=”Submit”

A

The attribute for submitting for information.

163
Q

-&lt-textarea-&gt-

A

Defines a multiline input control.

164
Q

-&lt-label-&gt–&lt-/label-&gt-

A

Defines a label for an -&lt-input-&gt- element.

165
Q

-&lt-fieldset-&gt–&lt-/fieldset-&gt-

A

Groups related elements in a form.

166
Q

-&lt-legend-&gt–&lt-/legend-&gt-

A

Defines a caption for a -&lt-fieldset-&gt- element.

167
Q

-&lt-select-&gt–&lt-/selection-&gt-

A

Defines a drop down list.

168
Q

-&lt-option-&gt–&lt-/option-&gt-

A

Defines an option in a drop-down list.

169
Q

-&lt-button type=”button”-&gt–&lt-/button-&gt-

A

Creates a clickable button.

170
Q

-&lt-optgroup-&gt–&lt-/optgroup-&gt-

A

Defines a group of related options in a drop-down list.

171
Q

-&lt-iframe src=”URL”-&gt–&lt-/ifram-&gt-

A

Defines an iframe to open up a new window inside of an existing window. You can also define the height and the width.