area

I. Description

The area HTML element is used to define a clickable area inside of a map element. Image elements may use a map element to define clickable areas.

II. Examples

<!DOCTYPE html>
<html>
    <head>
        <title>Example Page</title>
        <style>
            body map {
                height: 100px;
                width: 100px;
                background-color: red;
                display: block;
            }
        </style>
    </head>
    <body>
        <h1>Example HTML Page</h1>
        <p>Below is an example of the area html element.</p>
        <map>
            <area shape="rect" coords="0, 0, 100, 100"/>
        </map>
    </body>
</html>