Adding Alt tags to images using image_tag in Rails

Rails makes it easy to add alt tags to images using a handy helper method

Recently I have been running reports on an older website to see where there are quick wins to be had at improving the site.

Something that greatly benefits accessibility and has an added effect of being better for SEO is to have relevant alt text associated with your images.

If you are using Rails this is easy to implement.

You may already be familiar with using image_tag("my_image.webp") which is smart enough to go and look in the assets directory for your image.

This same method accepts an alt parameter, this means that;

image_tag("icon.webp", alt: "MyInc Logo")

Will generate

<img src="/assets/icon.webp" alt="MyInc Logo" />

Recent posts View all

SEOInterviews

WebLinkR Interview - we spoke with SEO Reddit Mod WebLinkR about, well, SEO

A short interview with SEO Reddit Mod WebLinkR about some of their SEO thinking.

Productivity Web Dev

81% of people more wary of dependencies due to AI

We polled people about how they felt about software dependenices since more folk used AI