<header> <hgroup> <h1><a href=/>АЛТАЮ 75 ЛЕТ</a></h1> <h2>И НАМ ЕСТЬ ЧТО СКАЗАТЬ</h2> </hgroup> </header>
I want to insert a logo in the header, but not in the hgroup tag, which tag for the img logo should I use?
<header> <hgroup> <h1><a href=/>АЛТАЮ 75 ЛЕТ</a></h1> <h2>И НАМ ЕСТЬ ЧТО СКАЗАТЬ</h2> </hgroup> </header>
I want to insert a logo in the header, but not in the hgroup tag, which tag for the img logo should I use?
Correctly said @drdaeman is better to use background-image in CSS for example:
<header id="header"> <hgroup> <h1><a href=/>АЛТАЮ 75 ЛЕТ</a></h1> <h2>И НАМ ЕСТЬ ЧТО СКАЗАТЬ</h2> </hgroup> </header> <style> #header{ background-image: url(logo.gif); } </style>
Source: https://ru.stackoverflow.com/questions/107988/
All Articles
img
tag, but image replacement ? - drdaeman