Section 1

Preview this deck

<!--COMMENT-->

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

4 years ago

Date created

Mar 1, 2020

Cards (47)

Section 1

(47 cards)

<!--COMMENT-->

Front

What tag inserts a comment?

Back

<tfoot></tfoot>

Front

These tags are used to group footer content in an HTML table.

Back

<form></form>

Front

Inserts a form set

Back

<ul><li></li><li></li><li></li></ul>

Front

What tags contain an unordered list with three items?

Back

<title></title>

Front

What tags identify the content of the document?

Back

<frame></frame>

Front

Defines frames within a frame set

Back

<frameset></frameset>

Front

Marks beginning and end of frameset

Back

<tbody></tbody>

Front

groups the body content in a table

Back

<marquee></marquee>

Front

Creates a scrolling text effect

Back

<td></td>

Front

defines a table cell

Back

<h1></h1>

Front

Largest header size

Back

<thead></thead>

Front

groups the header content in a table

Back

<head></head>

Front

What tags contain information about the document?

Back

<caption></caption>

Front

dedfines a table caption

Back

<colgroup></colgroup>

Front

defines a group of columns in a table, for formatting

Back

<em></em>

Front

What tags emphasize text (defaults to italics)

Back

<div></div>

Front

Defines a division or a section in an HTML document. Used to group block-elements and format them with CSS.

Back

<blockquote></blockquote>

Front

What tags specifiy a section that is quoted from another source.

Back

<sub></sub>

Front

Defines subscript text

Back

<h5></h5>

Front

5th Largest header size

Back

<a href="destination">link</a>

Front

What tags contain a hyperlink

Back

<ol><li></li><li></li></ol>

Front

What tags contain an ordered list with two items?

Back

<li></li>

Front

What tags contain a list item?

Back

<h6></h6>

Front

6th Largest header size

Back

<html></html>

Front

What tags enclose HTML markup?

Back

<col></col>

Front

specifies column properties for each column within a <colgroup> element.

Back

<textarea rows="" cols=""></textarea>

Front

Enclose a multi-line text input

Back

<tr></tr>

Front

defines a table row

Back

<body></body>

Front

What tags contain the content of the document?

Back

<img src="" alt="">

Front

Displays image on page

Back

<hr>

Front

What tag defines a thematic break in a document?

Back

<br>

Front

What tag defines a line break in a document?

Back

<h4></h4>

Front

4th Largest header size

Back

<th></th>

Front

defines a table header

Back

<h2></h2>

Front

2nd Largest header size

Back

<sup></sup>

Front

Defines superscript text

Back

<input></input>

Front

Defines an input type for a form

Back

<table></table>

Front

defines a table

Back

<option selected>

Front

Allows developers to define options from a set of selections

Back

<!doctype html>

Front

How do you start an HTML document (and also tell the browser it is HTML5)?

Back

<iframe src=""></iframe>

Front

Specifies an inline frame. An inline frame is used to embed another document within the current HTML document.

Back

<option>

Front

Defines an option in a selection list

Back

<h3></h3>

Front

3rd Largest header size

Back

<button type="button"></button>

Front

What tags defines a clickable button?

Back

<code></code>

Front

These tags enclose a piece of computer code

Back

<area shape="" coords=",,," href="" alt="">

Front

What tag defines an area inside an image-map?

Back

<p></p>

Front

What tags contain a paragraph?

Back