DEV Community

Cover image for Understanding the Differences Between HTML and HTML5
Rowsan Ali
Rowsan Ali

Posted on

Understanding the Differences Between HTML and HTML5

HTML (Hypertext Markup Language) has been the backbone of the web since its inception. However, with the introduction of HTML5, web development underwent a significant evolution. In this blog post, we'll explore the key differences between HTML and HTML5 and provide code examples to illustrate these changes.
Follow me on X

1. Document Type Declaration

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>My HTML Page</title>
  </head>
  <body>
    <!-- Content here -->
  </body>
</html>
Enter fullscreen mode Exit fullscreen mode

HTML5:

<!DOCTYPE html>
<html>
  <head>
    <title>My HTML5 Page</title>
  </head>
  <body>
    <!-- Content here -->
  </body>
</html>
Enter fullscreen mode Exit fullscreen mode

The document type declaration in HTML5 is simplified to <!DOCTYPE html>. In HTML, you had to specify a more complex DTD declaration.

2. New Elements

HTML5 introduced several new semantic elements, making it easier to structure web documents and provide better accessibility. Some of these elements include:

  • <header>: Represents a container for introductory content or a set of navigational links.
  • <nav>: Defines a section with navigation links.
  • <section>: Represents a section of content.
  • <article>: Represents a self-contained composition in a document, such as a blog post or news article.
  • <aside>: Defines content that is tangentially related to the content around it.
  • <footer>: Represents a footer for a section or the entire page.

HTML5:

<!DOCTYPE html>
<html>
  <head>
    <title>My HTML5 Page</title>
  </head>
  <body>
    <header>
      <h1>Welcome to My Website</h1>
    </header>
    <nav>
      <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">About</a></li>
        <li><a href="#">Contact</a></li>
      </ul>
    </nav>
    <section>
      <h2>Latest News</h2>
      <article>
        <h3>Exciting News!</h3>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
      </article>
      <article>
        <h3>Another Update</h3>
        <p>Quisque interdum nec leo at venenatis.</p>
      </article>
    </section>
    <aside>
      <h3>Related Links</h3>
      <ul>
        <li><a href="#">Learn HTML5</a></li>
        <li><a href="#">Web Development Tools</a></li>
      </ul>
    </aside>
    <footer>
      &copy; 2023 My Website
    </footer>
  </body>
</html>
Enter fullscreen mode Exit fullscreen mode

3. Audio and Video

HTML5 introduced built-in support for audio and video elements, making it easier to include multimedia content on web pages.

HTML:

<object data="myaudio.mp3"></object>
Enter fullscreen mode Exit fullscreen mode

HTML5:

<audio controls>
  <source src="myaudio.mp3" type="audio/mpeg">
  Your browser does not support the audio element.
</audio>
Enter fullscreen mode Exit fullscreen mode

HTML5's <audio> and <video> elements provide a native way to embed audio and video content, with the option to specify multiple sources and formats to ensure compatibility across browsers.

4. Form Elements

HTML5 enhanced form handling by introducing new input types and attributes for better user experience and validation.

HTML:

<input type="text" name="email" size="30">
Enter fullscreen mode Exit fullscreen mode

HTML5:

<input type="email" name="email" required>
Enter fullscreen mode Exit fullscreen mode

HTML5 offers new input types like email, url, and number, along with attributes like required and placeholder, to improve the quality of form input.

5. Local Storage

HTML5 introduced the localStorage and sessionStorage APIs, which allow web developers to store data locally in a user's browser, providing a more efficient and faster way to work with client-side data.

<script>
  // Store data in local storage
  localStorage.setItem('username', 'JohnDoe');

  // Retrieve data from local storage
  const username = localStorage.getItem('username');
</script>
Enter fullscreen mode Exit fullscreen mode

These APIs eliminate the need for cookies and provide a secure and efficient way to store data on the client side.

Conclusion

HTML5 brought significant improvements and new features to web development, making it more powerful, accessible, and efficient. By understanding these differences between HTML and HTML5, you can take advantage of the latest web technologies to create more modern and functional web applications. Whether you're building a simple webpage or a complex web app, HTML5 is the way to go.

Top comments (0)