I want to make a <h1 class="header"> Some Title </h1>
a link with only css, without adding the href="google.com"
in the html part.
Anyone knows how to do this?
I want to make a <h1 class="header"> Some Title </h1>
a link with only css, without adding the href="google.com"
in the html part.
Anyone knows how to do this?
The link adress MUST be in the HTML, you can't put it into CSS. Wrap your <h1>
tag with an <a>
tag:
<a href="http://www.example.com"><h1 class="header"> Some Title </h1></a>
I think there is no way create a link in your html with CSS only. What you can do is to use JavaScript to convert your h1 tags or tag into a link.