Maps | HTML: Maps are well designed of information. They are easy to understand by viewers.
Here is the Maps.html:
- <!DOCTYPE html>
- <html lang="en" dir="ltr">
- <head>
- <style>
- /* background image */
- body {
- background-image : url('images/people.jpg');
- background-repeat: no-repeat;
- background-size : cover;
- background-attachment : fixed;
- }
- </style>
- <title>Images in Html</title>
- </head>
- <body >
- <!-- maps -->
- <img src="images/covid19.jpg" alt="corona" usemap="#coronamap">
- <map name="coronamap">
- <area shape="circle" coords="389,180,125" href="https://en.wikipedia.org/wiki/Coronavirus" alt="corona virus">
- </map>
- </body>
- </html>
Web view of Html:
Here is the video: