In: Computer Science
Write a html program that containing at least the following elements: A heading A paragraph An ordinary image with link An imagemap with two clickable areas/hotsppots, link one to asignment1 and link the other to any available picture.
USE INSTAGRAM WITH THE LINK FOR ONE
I don't get your use Instagram image point.
Rest of the things I have covered and for more info you can search on Google or W3schools.
For image map you can use Adobe photosop or ms-paint to find the coordinates of the image.
----‐----------------------------------------------------------------------------------------
<!DOCTYPE html>
<html>
<head>
<title><h2>Heading can vary from h1 to h6</h2></title>
</head>
<body>
<h4> This is also a heading</h4>
<p>h1 is the biggest heading and h6 is the smallest one. The size of heading decreases from h1 to h6. By the way this a Paragraph.</p>
<h5>Click following link</h5>
<a href =”https://www.google.com/” target=”_blank”>
<img src=”https://www.flickr.com/photos/135422544@N08/30200666691” alt=”Scenery”>
</a>
<p> Click on mobile phone or laptop to know more about them</p>
<img src=”https://images.app.goo.gl/aSpyibEh6tqbAaR88” alt=”imgmap” usemap=”#mapping”>
<map name=”mapping”>
<area shape=”rect” coords=”34, 44, 270, 350” alt=”computer” href=”https://en.wikipedia.org/wiki/Computer”>
<area shape=”rect” coords=”290,172,333,250” alt=”phone” href=”https://en.wikipedia.org/wiki/Mobile_phone”>
</body>
</html>