what is HTML tags and usage and basic HTML tags

Published: (January 5, 2026 at 12:53 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

What is HTML tags?

An HTML tag tells the browser how to display or handle content.

Basic tag structure

Usage of tags?

HTML tags are used to create, structure, and format content on a web page. Each tag has a specific purpose.

Basic HTML tags

  • “ – Defines the beginning and end of an HTML document.
  • “ – Contains meta information like title, styles, and scripts.
  • “ – Sets the title of the webpage.
  • “ – Holds all visible content of the webpage.
  • “ – Used for top‑level headings.
Back to Blog

Related posts

Read more »

Bad CSS-Dad Jokes (VI)

Jokes - Why are developers impressed with Tailwind? One semantic class is worth one thousand utility classes. - Why was the web developer afraid of accordions?...

JavaScript DOM Explained for Beginners

What is DOM? DOM stands for Document Object Model. It is a tree‑like representation of your HTML document that JavaScript can: - read - change - add to - remov...