If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
Meta tags Html document के metadata को define करते है। Meta data हमे data के बारे में बताता है। <meta> tags हमेशा <head> element के अंदर होते है। हम meta tags को character set ,page description और keywords को specify करने के लिया use करते है।
Meta base page पर display नहीं होता पर वह machine मे parsable होता है। Meta base हम browser में use करते है ताकि हम content को display और page को reload कर सके और search engine और web services में भी यह use होता है। यह एक method है जिससे web designers viewport पर control पाकर meta tag को use कर सके।
Meta tags के advantages कुछ इस प्रकार है।
description : Define a description of your web pages.
<metaname="description" content="Learn Free Web tutorials Like HTML , CSS , PHP , Laravel, JavaScript .">
viewpoint : Setting the viewpoint to make your website look good on all device
<meta name="viewport" content="width=device-width, initial-scale=1.0">
character : Define the character set used
<meta charset="UTF-8">
charset : Specifies the character encoding for the HTML document
content : Specifies the value associated with the http-equiv or name attribute
http-equiv : Provides an HTTP header for the information/value of the content attribute
name : specifies a name for the metabase
<!DOCTYPE html> <html> <head> <title> Example for Meta Tag </title> <meta name = "keyword" content = "PHP tutorials , Laravel tutorials , JavaScript tutorials"> <meta name="description" content="Learn PHP , Laravel , JavaScript , jQuery Tutorials In Hindi"> <meta name="author" content="Rahul Kumar"> </head> <body> Welcome to w3schools.in<br> You are learning about HTML Meta Tags </body> </html>