Open In App

HTML | content Attribute

Last Updated : 30 May, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML content Attribute is used to given the values that are related to the http-equiv or name attribute. The content attribute can associated with the <meta> element. 

Note: This attribute is depreciated from HTML 5.

Supported Tags: 

  • <meta>

Syntax:  

<meta content="text">

Attribute Values: It contains the values the text which specify the content of the meta information.
Example: This Example illustrates the use of content attribute. 
 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
      content attribute in HTMLs
  </title>
    <meta name="keywords"
          content="content attribute
                   in Meta Tag, Metadata" />
</head>
 
<body style="text-align:center;">
    <h1> GeeksforGeeks</h1>
    <h2>Content Attribute In HTML</h2>
</body>
 
</html>


Output: 
 

Supported Browsers: The browser supported by HTML content Attribute are listed below: 
 

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads