CSS multiple text-decoration
You need to space separate them:
text-decoration: underline overline line-through;
http://jsfiddle.net/PamjT/
Easiest is to set border-bottom
to your h2:
h2 {
border-bottom:1px solid black;
text-decoration:blink;
}
Please note that blink isn't supported in IE, Chrome and Safari