Sunday, November 28, 2021

how we use mete tags in HTML

<!DOCTYPE html>
<html>
<head>      <!--in a head tag we can  use different mete tags-->

<meta name="description" content="this is a description">
<!--this mete tag is used for give description in our website-->

<meta name="keywords" content="c++ tutorial,web development">
<!--this mete tag is used when you want when people search about c++ tutorial,web             development than search engine show your website link.-->

<meta name="robots" content="noidex,nofollow">
    <!--this mete tag is used when you want that search engine cannot index and follow our website.-->
<title>Mete tages</title>
</head>
<body>
</body>
</html>

No comments:

Post a Comment