wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

HTML Tags Vocabulary

Total questions: 55

Worksheet time: 28mins

Name
Class
Date
1.

Surrounds words you want to stress or emphasize (typically italicize)

a)

<!DOCTYPE html>

b)

<em>

</em>

c)

<a>

</a>

d)

<html>

</html>

2.

Identifies the rules for the markup language so that the browsers render the content correctly.

a)

<canvas>

</canvas>

b)

<details>

</details>

c)

<!DOCTYPE html>

d)

<body>

</body>

3.

Inserts a link

a)

<li>

</li>

b)

<html>

</html>

c)

<source>

</source>

d)

<a>

</a>

4.

Commonly contains information that may be distributed independently from the rest of the site it appears in (like news or a blog post). This is always a separate item from the main content.

a)

<article>

</article>

b)

<embed>

</embed>

c)

<hgroup>

</hgroup>

d)

<mark>

</mark>

5.

Defines content that is related to the content surrounding it, but could be considered separate.

a)

<details>

</details>

b)

<aside>

</aside>

c)

<dialog>

</dialog>

d)

<main>

</main>

6.

Defines sound content

a)

<canvas>

</canvas>

b)

<h5>

</h5>

c)

<td>

</td>

d)

<audio>

</audio>

7.

Isolates a part of text that might be formatted in a different direction from other text outside it

a)

<bdi>

</bdi>

b)

<details>

</details>

c)

<em>

</em>

d)

<figcaption>

</figcaption>

8.

Indicates the beginning and end of all web page content.

a)

<body>

</body>

b)

<html>

</html>

c)

<head>

</head>

d)

<source>

</source>

9.

Breaks a line of text at the point where the tag appears. This creates a single line break. It is an empty tag which means it has no end tag.

a)

<div>

</div>

b)

<a>

</a>

c)

<br>

d)

<hr>

10.

Used to draw graphics, on the fly, via scripting (usually JavaScript)

a)

<img>

b)

<figure>

</figure>

c)

<figcaption>

</figcaption>

d)

<canvas>

</canvas>

11.

Defines additional details that the user can view or hide

a)

<hgroup>

</hgroup>

b)

<details>

</details>

c)

<article>

</article>

d)

<div>

</div>

12.

Defines a dialog box or window

a)

<bdi>

</bdi>

b)

<embed>

</embed>

c)

<aside>

</aside>

d)

<dialog>

</dialog>

13.

Defines a division/section of an HTML document. It is now recommended to use the <section> tag instead.

a)

<script>

</script>

b)

<section>

</section>

c)

<div>

</div>

d)

<p>

</p>

14.

Defines a container for an external application or interactive content (a plug-in)

a)

<embed>

</embed>

b)

<body>

</body>

c)

<html>

</html>

d)

<main>

</main>

15.

Defines a caption for an element that contains a graphic of some type – for a <figure> element

a)

<picture>

</picture>

b)

<figure>

</figure>

c)

<figcaption>

</figcaption>

d)

<canvas>

</canvas>

16.

Used to hold a graphic of some type - self-contained content

a)

<body>

</body>

b)

<figcaption>

</figcaption>

c)

<picture>

</picture>

d)

<figure>

</figure>

17.

Defines a footer for a document or section

a)

<footer>

</footer>

b)

<header>

</header>

c)

<section>

</section>

d)

<script>

</script>

18.

Used to define the most important heading level as this produces the largest, bold text of the headings group

a)

<h1>

</h1>

b)

<header>

</header>

c)

<h6>

</h6>

d)

<head>

</head>

19.

Used to define the second most important heading level as this produces the second largest, bold text of the headings group

a)

<h2>

</h2>

b)

<h3>

</h3>

c)

<h4>

</h4>

d)

<h5>

</h5>

20.

Used to define the third most important heading level as this produces the third largest, bold text of the headings group

a)

<h4>

</h4>

b)

<h5>

</h5>

c)

<h2>

</h2>

d)

<h3>

</h3>

21.

Used to define the fourth most important heading level as this produces the fourth largest, bold text of the headings group

a)

<h4>

</h4>

b)

<h2>

</h2>

c)

<h3>

</h3>

d)

<h5>

</h5>

22.

Used to define the fifth most important heading level as this produces the fifth largest, bold text of the headings group

a)

<h5>

</h5>

b)

<h4>

</h4>

c)

<h3>

</h3>

d)

<h2>

</h2>

23.

Used to define the sixth most (and least) important heading level as this produces the sixth largest (and smallest), bold text of the headings group

a)

<h1>

</h1>

b)

<h2>

</h2>

c)

<h5>

</h5>

d)

<h6>

</h6>

24.

Used as a container for the title, scripts, styles, and meta information associated with the html document.

a)

<html>

</html>

b)

<head>

</head>

c)

<main>

</main>

d)

<header>

</header>

25.

Specifies an introduction, or a group of navigation elements for a document

a)

<header>

</header>

b)

<canvas>

</canvas>

c)

<hgroup>

</hgroup>

d)

<menu>

</menu>

26.

Groups a set of <h1> to <h6> elements when a heading has multiple levels

a)

<progress>

</progress>

b)

<summary>

</summary>

c)

<hgroup>

</hgroup>

d)

<td>

</td>

27.

Creates a horizontal line on the web page and can be used to represent a thematic break in an HTML document.

a)

<ul>

</ul>

b)

<li>

</li>

c)

<img>

d)

<hr>

28.

Used as a container for all of markup elements (except the !DOCTYPE tag). This indicates the beginning and end of the markup document.

a)

<main>

</main>

b)

<html>

</html>

c)

<body>

</body>

d)

<p>

</p>

29.

Inserts an image

a)

<canvas>

</canvas>

b)

<figure>

</figure>

c)

<img>

d)

<picture>

</picture>

30.

Indicates that the item that follows the tag is an item within a list.

a)

<li>

</li>

b)

<ol>

</ol>

c)

<ul>

</ul>

d)

<article>

</article>

31.

Defines marked/highlighted text

a)

<mark>

</mark>

b)

<details>

</details>

c)

<em>

</em>

d)

<strong>

</strong>

32.

An element that contains content unique to the document. Should NOT contain content that is repeated across documents.

a)

<article>

</article>

b)

<body>

</body>

c)

<main>

</main>

d)

<source>

</source>

33.

Defines a list/menu of commands and is used for context menus, toolbars and for listing form controls and commands.

a)

<section>

</section>

b)

<menuitem>

</menuitem>

c)

<li>

</li>

d)

<menu>

</menu>

34.

Defines a command/menu item that the user can invoke from a popup menu

a)

<li>

</li>

b)

<menuitem>

</menuitem>

c)

<ol>

</ol>

d)

<menu>

</menu>

35.

Defines an area where links are stored and displayed

a)

<table>

</table>

b)

<nav>

</nav>

c)

<embed>

</embed>

d)

<a>

</a>

36.

Indicates the beginning and end of an ordered list.

a)

<ol>

</ol>

b)

<ul>

</ul>

c)

<li>

</li>

d)

<html>

</html>

37.

Defines a paragraph and automatically adds a blank line before and after the text it surrounds

a)

<body>

</body>

b)

<canvas>

</canvas>

c)

<p>

</p>

d)

<em>

</em>

38.

An element that is used mostly for art direction in responsive designs. Usually holds a <source> and an <img> tag

a)

<picture>

</picture>

b)

<source>

</source>

c)

<figure>

</figure>

d)

<img>

39.

Represents the progress of a task

a)

<summary>

</summary>

b)

<figcaption>

</figcaption>

c)

<details>

</details>

d)

<progress>

</progress>

40.

Used to embed or reference an executable coding file so a link can be established between your page and the file.

a)

<em>

</em>

b)

<embed>

</embed>

c)

<script>

</script>

d)

<a>

</a>

41.

Defines a container that acts like a type of thematic area on the page.

a)

<canvas>

</canvas>

b)

<section>

</section>

c)

<mark>

</mark>

d)

<wbr>

</wbr>

42.

Defines multiple media resources for media elements (<video> and <audio>)

a)

<video>

</video>

b)

<wbr>

</wbr>

c)

<audio>

</audio>

d)

<source>

</source>

43.

Surrounds words you want to REALLY emphasize a lot

a)

<h1>

</h1>

b)

<em>

</em>

c)

<strong>

</strong>

d)

<h6>

</h6>

44.

Defines a visible heading for a <details> element

a)

<summary>

</summary>

b)

<bdi>

</bdi>

c)

<div>

</div>

d)

<aside>

</aside>

45.

Draw scalable vector graphics

a)

<figure>

</figure>

b)

<svg>

c)

<canvas>

</canvas>

d)

<img>

46.

Inserts a table with data. Not to be used to format the page.

a)

<td>

</td>

b)

<tr>

</tr>

c)

<th>

</th>

d)

<table>

</table>

47.

Defines a standard cell in an HTML table.

a)

<html>

</html>

b)

<th>

</th>

c)

<td>

</td>

d)

<wbr>

</wbr>

48.

Defines a header cell in an HTML table.

a)

<td>

</td>

b)

<th>

</th>

c)

<head>

</head>

d)

<header>

</header>

49.

Defines a date/time

a)

<title>

</title>

b)

<details>

</details>

c)

<menuitem>

</menuitem>

d)

<time>

</time>

50.

Used to describe the topic and theme of an online document. Displays on the top bar of Internet browsers, NOT in the body of the web page.

a)

<wbr>

</wbr>

b)

<title>

</title>

c)

<head>

</head>

d)

<body>

</body>

51.

Defines a row in an HTML table.

a)

<table>

</table>

b)

<tr>

</tr>

c)

<td>

</td>

d)

<th>

</th>

52.

Used to add text like subtitles and captions to <video> and <audio> media elements.

a)

<tr>

</tr>

b)

<track>

</track>

c)

<script>

</script>

d)

<dialog>

</dialog>

53.

Indicates the beginning and end of an unordered (bulleted) list.

a)

<li>

</li>

b)

<ol>

</ol>

c)

<ul>

</ul>

d)

<hgroup>

</hgroup>

54.

Defines a video or movie

a)

<source>

</source>

b)

<video>

</video>

c)

<audio>

</audio>

d)

<embed>

</embed>

55.

Defines a possible line-break

a)

<p>

</p>

b)

<li>

</li>

c)

<br>

d)

<wbr>

</wbr>