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.png") 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.png", alt: "MyInc Logo")

Will generate

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

Recent posts View all

Web Dev

Creating draft posts in Jekyll

How to create and develop with draft posts in Jekyll

Ruby

Forcing a Rails database column to be not null

How you can force a table column to always have something in it with Rails