14.4. HTML Tags

Time to dive into all the different tags for organizing content! This page contains a helpful table of tags for beginning programmers. Tip: Bookmark this page!

This is NOT a complete list of all HTML tags, but it is a good place to start. If you are interested in exploring other tags on your own, W3Schools provides a longer, interactive list.

14.4.1. Tags to Know

Tag Name

Code

Definition

Bold

<b>

Makes text inside the tags bold.

Break

<br>

A single line break.

Button

<button>

Creates a clickable button.

Division

<div>

Defines an area of the page. Often used as a container to arrange other elements.

Emphasis

<em>

Makes text inside the tags italic.

Form

<form>

Creates a form for user input.

Heading, Level One

<h1>

Creates a heading in the text (see note below).

Hyperlink

<a>

Creates clickable links to other web pages.

Image

<img>

Adds an image and controls its appearance.

Ordered List

<ol>

Creates an ordered list. List items are given numbers, letters, etc. from top to bottom. (See the examples below this table).

Unordered List

<ul>

Creates an unordered list with bullet points for each item. (See the examples below this table).

List element

<li>

Indicates an element of a list. This tag is used for both ordered and unordered lists.

Paragraph

<p>

Creates a paragraph of text.

Span

<span>

Makes a section within a set of text.

Table

<table>

Creates a table of rows and columns on the page.

Thematic Break

<hr>

Adds a horizontal line between elements.

Examples

The ol and ul elements create a vertical list of items. We can also modify the appearance of the bullets.

List Examples

Ordered

Ordered

Ordered

Unordered

Unordered

  1. First list item
  2. Second item
  3. Third item
  1. First list item
  2. Second item
  3. Third item
  1. First list item
  2. Second list item
  3. Third list item
  • First list item
  • Second item
  • Third item
  • First list item
  • Second item
  • Third item

Note

There are multiple headings in HTML going from h1 to h6. The headings get progressively smaller.

A good rule of thumb is to have only one h1 in a web page. Also, do not skip a level, since headings can always be resized.

14.4.2. Tag Example

Here is an example of a basic web page using three of the tags above.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
<!DOCTYPE html>
<html>
   <head>
      <title>Plant-Loving Astronauts</title>
   </head>
   <body>
      <h1>Space Plants Are Cool</h1>
      <p>
         NASA discovers that plants can live in <b>outer space</b>.
         More innovations from this discovery to follow.
      </p>
      <!-- add images from NASA of these space plants -->
   </body>
 </html>
A web page with the heading, Space Plants Are Cool, and the paragraph about NASA's discovery of space plants.

Inside the body element, the <h1> and <p> tags define a heading and a paragraph element. Note that the p element also contains a set of <b> tags, which make the words “outer space” bold.

14.4.3. Attributes

In addition to the tag name, programmers can include extra information inside an HTML start tag. Programmers add attributes to HTML tags to control and adjust the element’s appearance on the page.

Examples of attributes include:

  1. The alignment of the element on the page (left, right, center, etc.).

  2. The text style (color, size, font, etc.).

  3. Alternate text for an image.

  4. The web address that a link points to.

Place attributes inside the start tag, right after the tag name. The general syntax is:

<tag_name attribute="value">content</tag_name>

We can add multiple attributes inside a tag, but they should be separated by spaces.

14.4.4. Attributes Example

Here is the same basic web page we saw above, but with a new <img> tag. Also, the <p> and <img> tags both include some attributes.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
   <head>
      <title>Plant-Loving Astronauts</title>
   </head>
   <body>
      <h1>Space Plants Are Cool</h1>
      <p style="color:blue">
         NASA discovers that plants can live in <b>outer space</b>.
         More innovations from this discovery to follow.
      </p>
      <img src="space-flower.jpg" alt="Flower floating in space.">
      <!-- This image was taken by NASA and is in the Public Domain -->
   </body>
 </html>
A web page with the heading, Space Plants Are Cool, and the paragraph about NASA's discovery of space plants with an accompanying picture of a flower floating in space.

The <p> tag includes the style attribute, and the value in quotes sets the color of the text to blue. style controls other properties as well, including alignment, font, background color, text size, etc. We will study styling in more detail next chapter.

The <img> tag has two attributes that we will see a lot. src (for source) gives the location of the image being used, and alt gives alternate text for anyone using a screen reader. For this reason, alt should provide a short description of what is going on in the image.

14.4.5. Block vs. Inline Elements

Take another look at the screenshots for the basic web pages. Notice that the sentence, NASA discovers that plants can live..., is split over two lines in the editor, but it appears on the same line on the web page. However, the heading and paragraph elements appear on separate lines.

The reason behind this involves the default behavior of different HTML elements. There are two display behaviors:

  1. Block-level elements always begin on a new line, and they take up the full width available. Any content in these elements stretches out as far as possible before wrapping to the next line.

  2. Inline elements do not start on a new line. They only take up as much width as necessary.

The h1 and p elements are both block-level, so their content occupies a dedicated space on the screen. This is why the heading and paragraph do not appear side-by-side.

The b element is inline. Its content occupies only as much space as necessary. This allows it to be nested inside the p element without breaking the paragraph into separate lines.

Example

By playing with the background colors, we can see the difference in behavior for block-level vs. inline elements.

 6
 7
 8
 9
10
11
12
<body>
   <h2 style="background:orange">Here Is A Heading Element</h2>
   <p style="background:lightblue">This is a paragraph element.</p>
   <span style="background:lightgreen">These are</span>
   <span>three separate</span>
   <span style="background:violet">span elements.</span>
</body>
Background colors showing the widths of block-level vs. inline elements.

The h2 and p elements stretch across the entire width of the screen, and they occupy their own, separate lines. Think of the orange and blue shaded areas as reserved space. If we add more text to the p element, it would fill in more of the empty blue area. However, only content for that element is allowed inside the space.

Each span element only takes up as much space as the text requires, and all three elements can share the same line. span is an example of an inline element.

Tip

Nest inline elements inside block-level elements, not the other way around!

14.4.6. Try It!

In the editor below, practice using different HTML tags and attributes to change the appearance of a web page.

First steps:

  1. The <br> and <hr> elements do NOT need ending tags. Add a <br> tag to the end of line 9. What happens to the text in the right panel?

  2. Add <br> tags to the end of lines 10 & 11. What if you use two of the tags (<br><br>) instead of just one?

  3. On line 14, add an <hr> tag. How does the web page change?

  4. Add <em>, <b>, or <span> tags around some of the text in the first paragraph. Change the color of the wrapped text by including the style attribute.

  5. Create an unordered list that contains at least three items. The syntax should look something like:

    <ul>
       <li>Item description...</li>
       <li>Item description...</li>
       <li>Item description...</li>
    </ul>
    

Next steps:

  1. Change both <ul> tags to <ol> to make an ordered list.

    1. The type attribute sets the item labels. Add type="A" inside the <ol> tag. Try replacing "A" with "a" and "I".

    2. The start attribute identifies where the list should begin counting. Add start="5" inside the <ol> tag. Try other numbers as well. (Note that type and start can BOTH be in the tag at the same time).

    3. The reversed attribute flips the numbering to count down instead of up. It does not need an equals sign. Add reversed to the <ol> tag to see what happens.

  2. Now let’s add a link! The syntax for the hyperlink element is:

    <a href="Website URL">Link Text</a>
    

    The href attribute requires the full address of a website, beginning with https:. Link Text will be the words that appear as the link on the page.

    Add <a href="https://www.launchcode.org/">LaunchCode</a> to the editor to see this in action. Feel free to use a different web address and link text.

    Because we are using an embedded code editor, clicking the link may not work quite right. Instead, right-click on the link text and choose Open Link in New Tab to see the results of your work.

  3. On line 7, add an opening <div> tag. Put the closing </div> tag on line 20 (right after the second paragraph element). Nothing changes in the view, but you just made a separate division (section) inside the page.

    Now add style="text-align:center" inside the <div> tag. Properly done, the text in the two paragraphs appears centered on the screen. Since the list and link elements are outside of the div element, their text does NOT get centered.

14.4.7. Check Your Understanding

Question

Which tag is used to make text italicized?

  1. b
  2. i
  3. em
  4. br

Question

Identify each of the following as a block-level or inline element. Click each option to check your thinking. Hint: Use the editor to test each element first!

  1. div
  2. span
  3. em
  4. ol
  5. ul
  6. li
  7. img
  8. h1