Hi, can anyone help me put the action of opening a link with this button?
<!DOCTYPE html> <html> <body bgcolor="green"> <form> <button id="bcen" value="Avançar" onCLick="history.forward()"> <script> document.getElementById("bcen").style.width = "100px"; //Size document.getElementById("bcen").style.height = "46px"; //Size document.getElementById("bcen").style.background ="blue"; //size document.getElementById('bcen').style.backgroundImage = "url(https://lh3.googleusercontent.com/proxy/rESDTuJNFKhbkD8VqG7PhHhnLHrlH74AFrnx1KR-aaHLqwJgGlveTLr1tAEwtFExNpSBoWQTTUu-EUHqeIn6wLo_mGWOrGNex1NzMzdtVzveod_0=w422-h195-nc)"; document.getElementById('bcen').style.backgroundSize ="contain"; document.getElementById('bcen').style.backgroundColor = "transparent"; document.getElementById('bcen').style.border = "none"; document.getElementById('bcen').style.outline = "none"; </script> </form> </body> </html>