Open In App

HTML | sizes Attribute

The HTML sizes Attribute is used to specify the sizes of the icon for visual media and it only works when rel=”icon”. It is a read-only property.

Uses:
It can be used in <link>, <source> and <img> element.



Syntax:

<link sizes="HeightxWidth"> 

Example:






<!DOCTYPE html>
<html>
  
<head>
    <link id="linkid"
          rel="stylesheet" 
          type="text/css" 
          href="styles.css" 
          sizes="16*16">
</head>
  
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>HTML <Link> sizes Attribute</h2>
</body>
  
</html>

Output:

Supported Browsers: The browsers supported by HTML sizes Attribute are listed below:

Article Tags :