Term
|
Definition
| HTML is a language for describing web pages. |
|
|
Term
| What does HTML stand for? |
|
Definition
| HTML stands for Hyper Text Markup Language. |
|
|
Term
| Is HTML a programming language? |
|
Definition
| HTML is not a programming language, it is a markup language. |
|
|
Term
| What is a markup language? |
|
Definition
| A markup language is a set of markup tags. |
|
|
Term
| How does HTML use markup tags? |
|
Definition
| HTML uses markup tags to describe web pages. |
|
|
Term
|
Definition
| HTML markup tags are usually called HTML tags. |
|
|
Term
| How are HTML tags written? |
|
Definition
| HTML tags are keywords surrounded by angle brackets |
|
|
Term
| How are HTML tags normally arranged? |
|
Definition
| HTML tags normally come in pairs. |
|
|
Term
| What are the individual HTML tags called? |
|
Definition
| The first tag in a pair is the start tag, the second tag is the end tag. |
|
|
Term
| What other names are used for start and end tags? |
|
Definition
| Start and end tags are also called opening tags and closing tags. |
|
|
Term
| What do HTML documents do? |
|
Definition
| HTML documents describe web pages. |
|
|
Term
| What do HTML documents contain? |
|
Definition
| HTML documents contain HTML tags and plain text |
|
|
Term
| What else are HTML documents called? |
|
Definition
| HTML documents are also called web pages. |
|
|
Term
| What is the purpose of a web browser as it relates to HTML documents? |
|
Definition
| The purpose of a web browser is to read HTML documents and display them as web pages. |
|
|
Term
| Does a browser display HTML tags? |
|
Definition
| A browser does not display the HTML tags, but uses the tags to interpret the content of the page. |
|
|
Term
| What keyword is used in an HTML tag for headings? |
|
Definition
| HTML headings are defined with the "h1" to "h6" tags. |
|
|
Term
| What keyword is used in an HTML tag for a paragraph? |
|
Definition
| HTML paragraphs are defined with the "p" tag. |
|
|
Term
| What keyword is used in an HTML tag for a link? |
|
Definition
| HTML links are defined with the "a" tag. |
|
|
Term
| What keyword is used in an HTML tag for an image? |
|
Definition
| HTML images are defined with the "img" tag. |
|
|
Term
| How are HTML documents defined? |
|
Definition
| HTML documents are defined by HTML elements. |
|
|
Term
|
Definition
| An HTML element is everything from the start tag to the end tag. |
|
|
Term
| How does an HTML element start? |
|
Definition
| An HTML element starts with a start tag/opening tag. |
|
|
Term
| How does an HTML element end? |
|
Definition
| An HTML element ends with an end tag/closing tag. |
|
|
Term
| What is the element content? |
|
Definition
| The element content is everything between the start and the end tag. |
|
|
Term
| Do all HTML elements have content? |
|
Definition
| Some HTML elements have empty content. |
|
|
Term
| How are empty elements closed? |
|
Definition
| Empty elements are closed in the start tag. |
|
|
Term
| What are nested HTML elements? |
|
Definition
| Nested HTML elements are elements which contain other HTML elements between their own start and end tags. |
|
|
Term
| What is an empty HTML element? |
|
Definition
| HTML elements with no content are called empty elements. |
|
|
Term
|
Definition
| Attributes provide additional information about HTML elements. |
|
|
Term
| Can HTML elements have attributes? |
|
Definition
| HTML elements can have attributes. |
|
|
Term
| Where are attributes specified? |
|
Definition
| Attributes are always specified in the start tag. |
|
|
Term
| What is the syntax for attributes? |
|
Definition
| Attributes come in name/value pairs like: name="value". |
|
|
Term
| How are attribute values expressed? |
|
Definition
| Attribute values should always be enclosed in quotes. |
|
|