HTML program to design a web page which include image hyperlink and set any image as a background to the page

HTML Code

<html>
<head>
    <title></title>
</head>
<body background="background.jpg">
Click on image
<a href="https://www.google.com">
    <img src="india.png"/>
</a>
</body>
</html>

OUTPUT