Answers for "how to link to an image in html"

7

how to make an image with a link html

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Image as link</title>
   </head>
   <body>
      The following image works as a link:<br>
      <a href="https://www.qries.com/">
         <img alt="Qries" src="https://www.qries.com/images/banner_logo.png"
         width="150" height="70">
      </a>
   </body>
</html>
Posted by: Guest on February-09-2021
6

how to add image in html

<img src="img_girl.jpg" alt="Image Load Error" width="500" height="600">
Posted by: Guest on July-25-2020
2

how to link a image in html

<html>
  <head>

  </head>
  <body>
  
<img alt="image" src="image.png" onclick="imageClicked()">

    
<script> 
   function imageClicked() {
     window.open("https://www.google.com");
   	}
</script>
    
    
  </body>
</html>
Posted by: Guest on July-19-2021
1

how to make an image link on html

<a href="your-hyper-link">
  <img src="image.png" alt="HTML img link tutorial" style="width:42px;height:42px;border:0">
</a>
Posted by: Guest on January-10-2021

Code answers related to "how to link to an image in html"

Browse Popular Code Answers by Language