

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set the shape of the area in HTML
Use the shape attribute to set the shape of the area in HTML. You can try to run the following code to implement shape attribute −
Example
<!DOCTYPE html> <html> <head> <title>HTML shape attribute</title> </head> <body> <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/> <!-- Create Mappings --> <map name = "html"> <area shape = "circle" coords = "154,150,59" href = "about/about_team.htm" alt = "Team" target = "_self" /> </map> </body> </html>
- Related Questions & Answers
- Set the coordinates of the area in an image map in HTML?
- How do we set the visible number of lines in a text area in HTML?
- How to set the shape of the border of the bottom-right corner in JavaScript DOM?
- How to set the shape of the border of the bottom-left corner in JavaScript DOM?
- How to set the shape of the border of the top-left corner with JavaScript?
- How to set the shape of the border of the top-right corner with JavaScript?
- Set the width of the element in HTML
- Set the size of the icons in HTML
- How to set the painting area of the background with JavaScript?
- Set the language of the linked document in HTML
- How to set the positioning area of the background image with JavaScript?
- Set the language of the track text data in HTML
- How to set the name of the element in HTML?
- How to compute the area of a set of bounding boxes in PyTorch?
- Set the name of the form the element belongs to in HTML?
Advertisements