Hackforge Academy

Category: html_css

what is meta tags in html

Published on 03 Jun 2026

Explanation

Meta tags are HTML elements placed inside the <head> section of a web page. They provide information about the webpage to browsers and search engines.

Code:

<meta charset='UTF-8'>

Explanation

The charset meta tag specifies the character encoding used by the webpage. UTF-8 supports most languages and special characters.

Code:

<meta charset='UTF-8'>

Explanation

The viewport meta tag helps make a webpage responsive on mobile devices by controlling the page's dimensions and scaling.

Code:

<meta name='viewport' 
content='width=device-width,
 initial-scale=1.0'>

Explanation

The description meta tag provides a summary of the webpage. Search engines may display this text in search results.

Code:

<meta name='description'
 content='Learn HTML Meta Tags'>

Explanation

The author meta tag specifies the creator or owner of the webpage.

Code:

<meta name='author' 
content='hackforge acdemy'>

๐Ÿš€ Learn Spring Boot with real-world projects

๐Ÿ’ก Build REST APIs step by step

๐Ÿง  Improve backend development skills

๐ŸŽฏ Get career-ready practical training

Join Our Free WhatsApp Community

Direct access to niche-specific mentors and peers on WhatsApp.

๐Ÿ

Python Community

Discuss Django, FastAPI, AI integration, and automation scripts with 15k+ developers.

Join Python Community
โš›๏ธ

React Community

Master Next.js, Framer Motion, and State Management. Share your latest UI components.

Join React Community
โ˜•

Java Community

Deep dives into Spring Boot, Microservices architecture, and high-performance backend ops.

Join Java Community