I am facing a problem where I need to insert a div inside an H2 Tag.
Do you think it's possible? I believe it should be, but I am unsure of how to accomplish it. Here is what I have attempted:
HTML
<h2 id="strap">Blah Blah & Some More Blah Blah Blah
<div class="section contain">
<a href="http://www.facebook.com/BlahBlah" rel="nofollow" target="_blank"><img alt="facebook" src="<%=SkinPath %>img/social/fb.png"/></a>
<a href="http://twitter.com/BlahBlah" rel="nofollow" target="_blank"><img alt="twitter" src="<%=SkinPath %>img/social/tw.png"/></a>
<a href="http://BlahBlah.wordpress.com/" rel="nofollow" target="_blank"><img alt="blog" src="<%=SkinPath %>img/social/wp.png"/></a>
</div>
</h2>
I would like the div element (Social Icons) to appear on the same line. Are there any alternative methods to achieve this?