Open In App

SVG <title> Element

The <title> SVG element provides an accessible, short-text description of any SVG container element or graphics element.

Text in an <title> element is not rendered as part of the graphic, but browsers usually display it as a tooltip. When you hover over the element, the title of that element will be shown.



Syntax:

<title> TITLE HERE </title>

Attributes:



Example: Making green consecutive circles inheriting attributes from the <g> element.




<!DOCTYPE html>
<html>
 
<body>
    <svg viewBox="0 0 100 100">
        <circle cx="5" cy="5" r="2" fill="green">
            <title>I'm a Geeky Circle</title>
        </circle>
    </svg>
</body>
 
</html>

Output:

Browsers Supported:

Article Tags :