skip to Main Content

How do i make image maps with HTML?

I literally started learning html earlier today with WE3Schools but I'm stuck on the part with image maps heres my code <img src="330px-Smiley.svg.png" alt="" usemap="#map" /> <map name="map"> <area shape="rect" coords="67, 60, 257, 150" href="https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Smiley.svg/330px-Smiley.svg.png" /> </map> I want it…

VIEW QUESTION

Html – Having an issue to display background image with linear-gradient with css modules in Next 14

This css doesn't display background image .header { height: 85vh; background-image: linear-gradient( to right bottom, rgba(var(--color-primary-light), 0.8), rgba(var(--color-primary-dark), 0.8) ), url('/img/hero-small.jpg'); background-size: cover; background-position: top; position: relative; } The following code works without linear-gradient: .header { height: 85vh; background-image: url('/img/hero-small.jpg');…

VIEW QUESTION
Back To Top
Search