The section breaks part of the breaks menu includes all of the following breaks except ____.

The following are some facts about HTML tags (plus a few facts about XHTML tags too):

  • Web pages are just plain text. You can view or edit the source code using any text editor.
  • "Tags" provide web browsers with instructions about the web page, such as where to display images, and how the document is structured.
  • Tags are always enclosed in angle brackets: < >.
  • Tags are comprised of elements and attributes. An element is an object on a page (such as a heading, paragraph, or image), and attributes are qualities that describe that element (such as width and height).
  • Tags usually travel in pairs. An opening tag begins a section of page content, and a closing tag ends it. For example, to markup a section of text as a paragraph, you would open the paragraph with an opening paragraph tag <p> and close it with a closing paragraph tag </p> (closing tags always proceed the element with a /).
  • A few tags are called non-container tags, because they don't contain any content - they stand alone. Examples are images and line breaks. XHTML is more strict than HTML, and requires that all open tags must be closed, even if they're not container tags. Therefore, non-container tags end in />. For example, the tag for a line break is <br />. HTML does not have this same requirement, but it's a good habit to get into in case you ever need to code in XHTML.
  • Tags in HTML are not case sensitive, but in XHTML all tags must be in lower case. Even when coding in HTML, you should get in the habit of writing tags in lower case.
  • White space is ignored by web browsers. So, if you hit the space bar multiple times within a document, only one of those spaces will actually be displayed by the browser.
  • Tags can be nested. For example:

    <div><p>This paragraph is nested inside a division</p></div>

    Note that the order of nested tags is important: The container tags surrounding any content should be symmetrical.

DOCTYPE: Defining your version of HTML

Every web page must start with a DOCTYPE declaration. It has to be the very first item on the very first line of your HTML or XHTML code. This tells browsers what version of HTML the web page was coded in, which helps them to know how to process the code. Prior to HTML5, DOCTYPE declarations were long and complex. For example, here's the DOCTYPE declaration for XHTML 1.1:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

In HTML5, the DOCTYPE declaration is much simpler:

<!DOCTYPE html>

Understanding the following tables:

Common HTML tags are presented below, organized into four tables based on their purpose. The first table includes tags that control the overall structure of the web page. The second and third tables include tags that mark up the majority of web page content. Container tags (those that contain content) are presented in the second table, and non-container tags (those that stand alone) are presented in the third table. The final table contains tags that are used in markup of HTML tables, which are covered in Module 5 of this unit.

Document Structure

Opening TagClosing TagDescription
<html> </html> Opens and closes an HTML document
<head> </head> The first of two main sections of an HTML document. The <head> section is used to provide information about the document for use primarily by search engines and browsers.
<title> </title> The title of document. This element is nested inside the <head> section. In HTML5, this is the only required tag other than the DOCTYPE declaration.
<body> </body> The second of two main sections of an HTML document. The <body> section contains all the content of the web page.

Content (Container) Tags

Opening TagClosing TagDescription
<h2> to <h6> </h2>to</h6> Headings. H1 is the main heading, H2 is secondary, etc.
<p> </p> Paragraph
<div> </div> A container for a block of content
<span> </span> A container for in-line content, such as content inside a paragraph.
<em> </em> Gives the contained text emphasis (usually as italics).
<strong> </strong> Makes the contained text bold.
<a href = "document location"> </a> Link
<ol> </ol> Ordered (numbered) list
<ul> </ul> Unordered (bulleted) list
<li> </li> List item, must be nested inside a list element such as a <ol> or <ul>
<!-- --> Comment. Anything between these tags is not displayed on the screen. This is useful for making notes to yourself or to others who may view the source code of the web page.

HTML5 Semantic Tags

HTML5 introduced several new tags called semantic tags. These tags were designed to communicate the function of blocks of content that were common on many web pages. Prior to HTML5, developers just used <div> tags for all blocks.

Opening TagClosing TagDescription
<header> </header> Contains introductory content for a page (e.g., a banner), or a section of a page.
<nav> </nav> Contains navigation content, such as a website navigation menu.
<main> </main> Contains the main content of the web page.
<aside> </aside> Contains content that is tangentially related to the main content of the page (often this is presented in a sidebar).
<footer> </footer> Contains the footer of a page, or of a section of a page. Typically the footer contains information about the content, such as the author and a copyright statement.

Empty (Non-Container) Tags

TagDescription
<br /> Line break.
<img src ="image location" alt="alternate text" /> Inserts an image into a web page.

Tables

Opening TagClosing TagSample AttributesDescription
<table> </table>   Adds a table
<tr> </tr>   Table row (start & end).
<th> </th> scope="row"
scope="col"
When creating a table to display data, use this tag to differentiate the first row or column of cells as heading cells for all the other cells in the same column or row. Browsers typically display this element bold and centered within the table cell. The scope attribute defines whether this is a row header or column header.
<td> </td>   Table data cell.
    colspan="number" Use with <th> or <td> elements. Spans cells across multiple columns.
    rowspan="number" Use with <th> or <td> elements. Spans cells across multiple rows.

Where is the breaks button located?

Where is the Break key on the keyboard? On most keyboards, the Break key is on the right side of the top row of keys. On a typical U.S. keyboard, it is the alternate function of the Pause key. If so, pressing Ctrl + Pause may be required to activate Break.

When you press the Tab key in the last cell in the table ___?

To navigate between cells, use the Tab key or arrow keys on your keyboard. If the insertion point is in the last cell, pressing the Tab key will automatically create a new row.

Which of the following terms refers to the break entered by word to start a new page in a document when the current page is full?

A page break is inserted, and any text after that point is moved to a new page. You can also insert a page break by pressing Ctrl + Enter.

What is one of the primary advantages of using tab stops and tables in a Word document?

The chief advantage to using tabs rather than spacing is that after the tabs are in your document, you can move or change the tab stops and then the selected text moves or realign.