Answers for "image as link in markdown"

28

how to insert an image in markdown

![image info](./pictures/image.png)
Posted by: Guest on June-19-2020
1

markdown image embed url

#This embeds a link into an image
#And works find in GitHub Readme
#As of Jan 2022

<p>
  <a href="http://google.com" title="Redirect to homepage">
    <img src="image_url_link/image.png" alt="homepage" />
  </a>
</p>
Posted by: Guest on January-22-2022

Browse Popular Code Answers by Language