Hi i have searched on net for header h1 tag but i can find it for simple text which was like <h1>anything</h1> i want a h1 tag which is with hyperlink will u post the html code for it. and is this simple h1 coding ok.
Err... <a href="whateveryouwant.com"><h1>Whatever</h1></a> I am pretty sure that is what you are asking.
Err.. Nope, the <a> should be inside the <h1> <h1> <a href="#">Link</a> </h1> Code (markup): <h1> Is a block level element and an <a> is an inline. Nick
another solution if you like to add many links with only of h1 h1 { } in css <div class="h1"><a href="">anything</a></div> <--> reflects the h1 link <a href="">anything</a> <--> reflects the normal link