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'>