saikalyan.uppala
saikalyan.uppala

Reputation: 9

diff b/w submit button and anchor tag

I am new to this site.Started with my first question on HTML what is the main difference between html button type submit and anchor tag? can both do same things then what is the difference?

Upvotes: 1

Views: 926

Answers (1)

Naveed
Naveed

Reputation: 42093

Both are different:

Anchor Tag: The HTML anchor element is used to create a link to a resource (another web page, a file, etc.) or to a specific place within a web page.

Submit Button: When a user clicks a submit button, the form is sent to the address specified in the action setting of the tag.

But behaviour of both elements can be changed using JavaScript

Upvotes: 2

Related Questions