Button to redirect to another page

Place to talk about website HTM elements, CSS style and design, and get help with HTML, CSS codes.
mluci12
Posts: 39

Button to redirect to another page

Hello! How can i create a button like scroll up to redirect to a html page when is clicked.

Admin Posts: 805
Hi,
What did you try? What code you have?
I think you can make that button a simple <a> link:

Code: Select all

<a href="page.html" id="btnid" title="Some title">Text</a>
Then, style and position the #btnid with css how you wish.

Similar Topics