Everything you need to know about modern HTML

May 22, 2021
6 min read
Saroj Kumar

Helloo Guys !!
Hope you are all in Good Health and Enjoying the Quarantine.

This post is about beginners who are just starting their career as a Web developer. As part of the "How to start front-end Web Development" series, I'll walk you though everything you need to know about modern HTML. Let's dive in.

Quick Intro

HTML5 is the latest evolution of the standard that defines HTML. The term represents two different concepts. It is a new version of the language HTML, with new elements, attributes, and behaviors, and a larger set of technologies that allows the building of more diverse and powerful Web sites and applications.
- MDN

Though, there are limited restrictions in writing HTML code. But, following the general conventions of programming is recommended.

Basic Rules to Follow

While writing HTML markup or any programming language in general, you need to follow the basics that i'm listing below.

  • Always use proper indentation and spacing
  • Write some comments whenever possible. This helps other developers to understand your code better.
  • Use semantics. (Use meaningful variables or functions in programming or use semantic tags in case of HTML)

Overview

HTML is a markup language that is used for creating web pages that displaying content on a browser.
It consists of some elements called tags that describe the structure of that web page.

Some of the basics tags that are used to create a web page are html, head, body, h1 ... h6, p, a, img etc.
Some tags are paired tags that have an opening tag and an closing tag, some tags are self closed.

A basic html code will look like this:

<html>
  <body>
    <h1>This is a Heading</h1>
    <p>This is a paragraph</p>
  </body>
</html>

There are a ton of resources where you can learn more about HTML.

What's new ?

After you learn the basics of HTML and How to write documents or web pages using the tags, lets look into what are the new features that we should know and implement in our coding.

  • Semantics: Writing meaningful tags about our content.
  • Connectivity: Allowing to communicate with server in new ways.
  • Offline and Storage: Allowiing webpages to store data locally and work in offline efficiently.
  • Multimedia: New tags that support multimedia in simpler ways.
  • 2D/3D: More diverse ways of presentation
  • There are additional features in new HTML5 like Performance improvement, More device access and Better styling.

Semantics

HTML5 introduced some semantic tags that replaced the old school way of writing HTML code. Earlier we used a tag called div for outlining and sectioning in the Web, which replaced by tags like header, section, article, main, aside, footer etc.
These tags are just same as div but provide meaning to the content.

Connectivity

New Web sockets and WebRTC (Web Real-Time-Communication) features let client and server interaction along with peer to peer communication possible without installing any extensions.

Offline and Storage

New Online and Offline events let webpages know whether there is active internet connection or not.

Now clientStorages like sessionStorage, localStorage, indexedDB provide client side persistent data storage and better caching.

Multimedia

New HTML5 audio and video tags allow embedding and controlling audio and video media directly in the web page.

There are additional tags like source and track which is used to add more functionality to the web component.

Camera API and WebRTC features allow using computer's camera and comunicating through video conferencing respectively.

2D/3D

New canvas tag is now used to draw objects and animations in the web.

By using new WebGL we can now bring 3D Graphics in the Web.

SVG images now can be directly embedded in the Web Pages. More on it later.

Additional

We have performance improvement like Web Worker, XMLHttpRequest, History and FullScreen API, Drag and Drop etc. and Device Access like touch events, geolocations, and Camera API are the important features.

There is a huge improvement in CSS referred as CSS3 which now has a lot of new Features in background styling, animations and Typography.

I really want to teach you more on these Topics. So, I am keeping them for future and more specific posts.

New useful Tags

Apart from semantic tags discussed above, Here are some of the new HTML tags that you should possibly replace while writing HTML Code.

Tag Description
<bdi> Isolates a part of text that might be formatted in a different direction from other text outside it
<details> Defines additional details that the user can view or hide
<summary> Defines a visible heading for a <details> element
<dialog> Defines a dialog box or window
<figure> Defines self-contained content
<figcaption> Defines a caption for a <figure> element
<mark> Defines marked/highlighted text
<meter> Defines a scalar measurement within a known range (a gauge)
<progress> Represents the progress of a task
<time> Defines a date/time
<wbr> Defines a possible line-break
<datalist> Specified options show as suggestions while typing in an input field

Using Attributes

As now you know where and how to use new HTML5 tags, let's see how you can write attributes.

Attributes are very important for any tag to be effectiively useful for the web page. General attributes like bgcolor, height, align, cellpadding etc are no longer used and replaced by CSS. So, it's a good practice to keep track of what attribute to use and what not. There are alternative attributes like style which provide the same functionality. There are some attributes which does not require any value. e.g.- controls, allowfullscreen, autoplay, autocomplete.

There are special attributes like data-* and aria-* (Accessible Rich Internet Applications).
data-_ is used to store custom data private to web page.
aria-_ is used for accessibility support like screen readers, text-to-speech, magnifiers etc.

Read More about data-*
Read More about aria-*

Learn about writing better meta/information about the web page you are developing. Its always a good practice to write as much as additional information about the page in the head.

That's it for this post. Let me know if you find these useful.

References:

MDN Docs

If you like the post, feel free to share it.

Thank You

auto_awesomePopular

campaignMessage

I'll be adding more posts soon. If you have any topic of interest or suggestion, contact me.

Suggest

label
Topics

shareSpread the Word