HTML content Attribute


The content attribute in HTML is used to display the value with the name or http-equiv. It is associated with the <meta> element.

The content attribute of the <meta> element is used to set the meta information in an HTML document. This can be the information for the description or the keywords, for name attribute.

Following is the syntax −

<meta content="text">

Above, the text is the meta information.

Let us now see an example to implement the content attribute of the <meta> element −

Example

 Live Demo

<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Learn for free">
</head>
<body>
<h2>Tutorials</h2>
<p>Programming tutorials for free:</p>
<ol>
   <li>Java</li>
   <li>C++</li>
   <li>C</li>
   <li>C#</li>
</ol>
</body>
</html>

Output

Updated on: 30-Jul-2019

4K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements