html web page with meta tag

Submit By webmaster Time: March 30, 2021 Likes (0) | Views (340) |

The meta tag should be defined under the head tag. These tags are basically used to add name and content to describe his purpose. 

<!DOCTYPE html>
<html>
<head>
<title>Title</title>

<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width,minimum-scale=1, initial-scale=1.0">
<meta name="description" content="page description">
<meta name="keywords" content="page keywords">
<meta name="author" content="FreeCodeSnippet">

</head>
<body>

<h1> Heading of the Webpage</h1>
<p>Description of the web page in the paragraph</p>

</body>
</html>

Free code snippet playground

Let's share the example by using HTML, CSS, JavaScript and Bootstrap.

Add New Snippet