ArtOfCode.org
Toggle Menu
Home
Online Rust Compiler
Tutorials
Algorithms 101
Html Css Tutorial
Javascript Tutorial
Blog
All Posts
HTML5 Semantic Markup
Identify proper tags and structure.
1. Which HTML5 element is specifically designed to represent the main content of a webpage?
<div>
<main>
<section>
<content>
2. Select all HTML5 semantic elements from the following list.
<header>
<div>
<nav>
<span>
<footer>
3. The <div> element is considered a semantic HTML5 element.
True
False
4. Briefly describe what the <article> element represents in HTML5 (e.g., 'self-contained...').
5. Which HTML5 element is used to define a section of major navigation links?
<menu>
<nav>
<navigation>
<links>
6. Which of the following are HTML5 sectioning elements that define distinct document outline sections?
<section>
<article>
<aside>
<div>
<main>
7. HTML5 semantic elements improve accessibility by providing meaning to screen readers.
True
False
8. What does the <aside> element typically contain? (e.g., 'content aside...')
9. Which element is best for containing a page's introductory content, like a title and logo?
<h1>
<header>
<intro>
<heading>
10. Select all elements that help search engines understand page structure (SEO benefits).
<main>
<span>
<footer>
<div>
<article>
Reset
Answered 0 of 0 — 0 correct