• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/15

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

15 Cards in this Set

  • Front
  • Back

All HTML documents must start with a ___ declaration.

All HTML documents must start with a type declaration.

Give an example of a type declaration.

An example of a type declaration is:



<!DOCTYPE html>

The HTML document itself begins with which tag and ends with which tag?

The HTML document itself begins with <html> and ends with </html>.

The visible part of the HTML document is between the ___ tags.

The visible part of the HTML document is between the <body> and </body> tags.

HTML headings are defined with ___ to ___ tags.

HTML headings are defined with <h1> to <h6> tags.

Give an example of an HTML heading.

An example of an HTML heading is:



<h1>This is a heading.</h1>

HTML paragraphs are defined with the ___ tag.

HTML paragraphs are defined with the <p> tag.

Give an example of an HTML paragraph.

An example of an HTML paragraph is:



<p>This is a paragraph.</p>

HTML links are defined with the ___ tag.

HTML links are defined with the <a> tag.

Give an example of an HTML link.

An example of an HTML link is:



<a href="http://www.google.com">The Link</a>

The link address is specified in the ___ attribute.

The link address is specified in the href attribute.

What is an attribute?

An attribute is used to provide additional information about an HTML element.

HTML images are defined with the ___ tag.

HTML images are defined with the <img> tag.

What are three attributes that should be included with each HTML image?

Three attributes that should be included with each HTML image are the source file (src), the alternative text (alt), and the size (width and height).

Give an example of an HTML image.

An example of an HTML image is:



<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">