EN
HTML - button that acts like link
0 points
In this article, we would like to show you how to create a button element that acts like a link in HTML.
Quick solution:
xxxxxxxxxx
1
<form action="https://dirask.com/posts/DZ3Jep" target="_blank">
2
<button type="submit">Click me!</button>
3
</form>
or:
xxxxxxxxxx
1
<a href="https://dirask.com/posts/DZ3Jep" target="_blank">
2
<button>Click me!</button>
3
</a>
In this section, we
xxxxxxxxxx
1
2
<html>
3
<body>
4
<form action="https://dirask.com/posts/DZ3Jep" target="_blank">
5
<button type="submit">
6
Click me!
7
</button>
8
</form>
9
</body>
10
</html>
Note:
You can also use
<input type="submit">
as a<button type="submit">
replacement.
In this section, we use button element inside the <a>
tag to create a button that acts like a link.
xxxxxxxxxx
1
2
<html>
3
<body>
4
<a href="https://dirask.com/posts/DZ3Jep" target="_blank">
5
<button>
6
Click me!
7
</button>
8
</a>
9
</body>
10
</html>
Go to the following article to see how to style the link
element to make it look like a button: