vote up 0 vote down star

I want to use the look of standard buttons on my page, but I want web crawlers to follow them as if they were links.

Will Google and other web-crawlers index a web page that has links that look like this?

<form method="get" action="/mylink.html"><input style="font-size:10pt" id="my-link" type="submit" value="Learn More..." /></form>

If not, is there another way to use standard buttons?

flag

2 Answers

vote up 3 vote down check

Googlebot does follow forms, but I wouldn't count on it.

Also using buttons for links is generally not a good idea, as pointed out by Dave.

link|flag
vote up 4 vote down

You can always use an <a> tag and then style it to look like a button. This requires a bit more work though.

In my opinion, when you present navigation options through buttons you run the risk of confusing users. Users associate clicking a button with performing a task with side-effects. Users also expect links to take them directly to content without modifying anything. Here's an article that supports my argument.

Edit:

Here's a better example of styling a link:

<style>
.NavLink {		
	padding:5px;
	background-color:#333333;
	color:#FFFFFF;
	font-weight:bold;
	font-size:16px;
}
</style>
<a class="NavLink">Nav Text</a>
link|flag
See the "Ask Question" butotn in top right of stack overflow. It's a link. It's a button. I want the same navigation, but I don't want a styled button... Is that confusing? – jm Apr 25 at 16:31
But I did point out how you can do that. You style an <a> tag with display:block;background:#333333;font-size:14px;padding:3px; or something similar. And that isn't a standard button. – Dave L Apr 25 at 16:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.