diff --git a/Extensions/Jdenticon.AspNet.Mvc/HtmlHelperExtensions.cs b/Extensions/Jdenticon.AspNet.Mvc/HtmlHelperExtensions.cs
index 1e1c465..bd8a9c1 100644
--- a/Extensions/Jdenticon.AspNet.Mvc/HtmlHelperExtensions.cs
+++ b/Extensions/Jdenticon.AspNet.Mvc/HtmlHelperExtensions.cs
@@ -83,7 +83,7 @@ public static MvcHtmlString Identicon(this HtmlHelper helper, byte[] hash, int s
"src=\"" + HttpUtility.HtmlAttributeEncode(url) + "\" " +
"width=\"" + size + "\" " +
"height=\"" + size + "\" " +
- "title=\"" + HttpUtility.HtmlAttributeEncode(alt ?? "") + "\" \">";
+ "alt=\"" + HttpUtility.HtmlAttributeEncode(alt ?? "") + "\" >";
return new MvcHtmlString(html);
}
}