top of page
Writer's pictureThe Tech Platform

Create a Image as a Link in HTML.

Code:

<!DOCTYPE html>
<html>
<body>

<h2>Image as a Link</h2>

<p>Click on the Image to see the results:</p>

<a href="https://www.thetechplatform.com/">
<img src="https://static.wixstatic.com/media/12e1e9_65f448883a4b4216a14b58c684894737~mv2.jpg/v1/fill/w_225,h_51,al_c,q_80,usm_0.66_1.00_0.01/logocrop.webp" alt="HTML tutorial" ;">
</a>

</body>
</html>

Output:



When you will click on the image, below page will appear.





The Tech Platform

0 comments

Comments


bottom of page