⇦ Back

WDX-180

Web Development X

Semantic HTML

There are no semantic tags or attributes being used in the messages for this example. Let’s improve it by changing the tags and attributes to semantic HTML code, so that computers can understand what kind of information is being presented. Take a look at the picture, which shows an example of a semantic HTML structure.

A visual diagram showing the semantic structure of an HTML page.

Complete the following changes in the index.html file:

  1. Replace an existing tag with the <header role="banner"> tag to specify the site’s header area.

  2. Replace an existing tag with the <main role="main"> tag to specify the main content on the site.

  3. Replace existing tags with the <article> tag to group information relating to a single message.

  4. Extra challenge: read this article about the <time> tag and the datetime="" attribute. Use this to specify the time of each message.

  5. You’ll have to copy the files existing in the folder and place them in the corresponding folder inside your user/ folder.

  6. When you are finished, use git to add, commit and push your changes.

For example:

git add user/week01/exercises/day03/3-semantic-html/
git commit -m "Completed 1-parent-child exercise"
git push

Hint: To complete this exercise, you should modify the HTML tags without removing the attributes that are already there. For example, if you wanted to change <div class="article></div> to an <article> tag, you would use <article class="article"></article>. The class attribute should not be removed.

If you are having trouble, you can review read this guide to the semantic tags.


Sources and Attributions

Content is based on the following sources:


Project maintained by in-tech-gration Hosted on GitHub Pages — Theme by mattgraham