I am a beginner and I have doubts. Here is an example of how I want it to be:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<!-- Como fazer esse link abrir sem necessidade do usuário clicar?-->
<a href="launch.jnlp">Clique</a>
</body>
I am a beginner and I have doubts. Here is an example of how I want it to be:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<!-- Como fazer esse link abrir sem necessidade do usuário clicar?-->
<a href="launch.jnlp">Clique</a>
</body>
If you want to open the link in a new tab, even though you are a beginner, you can choose JavaScript , here is a practical example:
function OpenInNewTab(url) {
var win = window.open(url, '_blank');
win.focus();
}
In the HTML code we will only place:
<body onload=OpenInNewtab('http.....')>
.......
</body>