Open In App

HTML | <meta> scheme Attribute

The HTML <meta> scheme Attribute is used to specify a scheme to interpret the property’s value.
Syntax:

<meta scheme="format | URI">

Attribute Values:



Examples:




<!DOCTYPE html>
<html>
  
<head>
    <meta name="keywords" 
          content="Meta Tags, Metadata" 
          scheme="ISBN" />
</head>
  
<body>
    <center>
        <h1>GeeksForGeeks</h1>
        <h2> Meta scheme attribute</h2>
        <p>Hello GeeksforGeeks!</p>
    </center>
</body>
  
</html>            

Output:

Supported Browser: The browsers supported by HTML <meta> scheme Attribute are listed below:



Article Tags :