WDD 130: Web Fundamentals

HTML: Common and Semantic Elements

Overview

HTML describes the structure of a web page document. The structure is made up of categories of elements including the following content items: metadata, section, heading, phrasing, embedded, and interactive elements. Some elements are associated with forms and tabular data. You are not expected to memorize all HTML tags. Rather, become familiar with the most commonly used elements and be able to reference others through viable sources.

"Most HTML elements are a member of one or more content categories β€” these categories group elements that share common characteristics." - MDN

Prepare

You have already applied some basic HTML to your home page including required, head content. In this activity, let us formally list some basic HTML concepts and elements that you will use in your current work in this class.

Activity Instructions

In this activity we practice building a common page layout using HTML with a header, navigation, main , aside, and a footer element.

Folder and File Setup

  1. In VS Code, create a "week02" folder if you have not already.
    This new folder should be a subfolder of your wdd130 main folder.
  2. Create a new HTML file name "holygrail.html" in the week02 folder. Make sure this HTML file is located in the week02 sub-folder and not on the wdd130 root/parent folder.
    File Structure for Holy Grail Assignment
    Figure 1: File Structure for Week 02 Holy Grail Assignment

HTML Head Content

Start building the holygrail.html page by including these, baseline, required HTML elements:

Use the first two sections of the πŸ“‘Development Standards Checklist reference, which you should bookmark, to help you with the how and why on each of these requirements.
Check Your Understanding
<!DOCTYPE html>
<html lang="en-US">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>Xavier Rodriquez | Holy Grail Layout Example</title>
    <meta name="description" content="A common layout on the web called the 'holy grail'">
    <meta name="author" content="Xavier Rodriquez">
  </head>
  <body>

  </body>
</html>

It is OK to use built-in snippets in VS Code that write common code segments for you. For example, in a blank html document, try typing html5 and then click the tab key. Note that it provides the common HTML framework.

HTML Body Content

Build the common page layout within the <body> using the following semantic elements:

Remember that this page will not have any layout or style at this point. It is just the structure. We will add CSS styling and layout in another activity.
  1. Start with a <body> element that will contain all the page content.
  2. Add a <header> element.
    • Include a first level heading <h1> within the header.
    • The content of the heading can be "A Holy Grail Layout Example".
  3. After the header ends (</header>), add a <nav> element.
    • The nav element contains a single unordered list <ul> with two list items.
    • The two (2) list items <li> each contain a hyperlink <a> to an external site of your choice.
  4. Next, include a <main> element.
    • The main element contains two (2) <section> elements.
    • Each section element contains:
      • A second level heading <h2> with the placeholder language of "Heading", etc.
      • a single paragraph <p>
        The paragraph content can be filler/placeholder text. To automatically fill the paragraph with Lorem ipsum text, in VS Code type lorem10 and then press the Tab key and ten (10) words will be written automatically. You can change the number 10 to the desired size.
  5. Next, include a <aside> element.
    • In this container element, include an image element <img>.
      1. Reference (src) a temple image from the Church Media Gallery.
        Copy the image URL of the image you choose by right mouse clicking on the image and selecting Copy image address from the popup menu.
      2. Set the width attribute (width) to a value of "200" which means 200 pixels.
  6. Next, include a <footer> element.
    The content of the footer element can just be your name.
Check Your Understanding
  <body>
    <header>
      <h1>A Holy Grail Layout Example</h1>
    </header>
    <nav>
      <ul>
        <li><a href="https://byui.edu">BYU-Idaho</a></li>
        <li><a href="https://churchofjesuschrist.org">The Church</a></li>
      </ul>
    </nav>
    <main>
      <section>
        <h2>Heading</h2>
        <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Molestiae, tenetur ...</p>
      </section>
      <section>
        <h2>Heading</h2>
        <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Molestiae, tenetur ...</p>
      </section>
    </main>
    <aside>
      <img src="https://content.churchofjesuschrist.org/templesldsorg/bc/Temples/photo-galleries/payson-utah/800x500/payson-utah-temple-celestial-room-1458545.jpg" alt="Payson Utah Temple Celestial Room" width="200">
    </aside>
    <footer>
      🌴 Xavier Rodriquez
    </footer>
  </body>

Submission

  1. Save, commit and push/sync your work to your wdd130 GitHub Pages remote site.
    • In VS Code, click on the Source Control icon.
    • Type a commit Message in the message input field provided. This is for your own reference but is required.
    • βœ”οΈCommit the changes by clicking the blue Commit button or using the βœ”οΈ.
    • Sync your committed changes to your GitHub repository that is already connected by clicking the blue Sync button.
    Commit and Push to GitHub from VSCode
    Figure 2: Commit and Push to GitHub from VSCode
  2. Test your work by running this Page Evaluation tool.
  3. Share your work with class in MS Teams by posting your URL to this html file:
    https://githubusername.github.io/wdd130/week02/holygrail.html

Optional Resources