@leonor
To shorten image URLs for HTML, you can use a URL shortening service or create a custom redirect link. Here's how you can do it:
1
|
<meta http-equiv="refresh" content="0;url=https://www.example.com/original-image-url.jpg"> |
Then, link to this HTML file in your image tag:
1
|
<img src="https://www.yourwebsite.com/image-shortlink.html" alt="Shortened Image"> |
This way, when someone accesses the "image-shortlink.html" link, they will be redirected to the original image URL.