Adding a URL in a post/HTML



nillix

Supreme
Joined
24.05.21
Messages
5
Reaction score
0
Points
2
HTML page redirection.
HTML:
<a href="http://webı.com">Post it here.
</a><br />
If you want Linkin to open on a different page. then after the site target="_blank" Add your.
HTML:
href="http://web.com"target="_blank">post it here</a><br />
Url for the file:
HTML:
[url = You must write the link of the file here] Text you want to write here! [/ Url]
Here are a few page redirect codes. Maybe it will be useful for you.
1. Cod:
HTML:
<script type="text/javascript"> $(function() { location.href = 'adres'; });</script>
2. Cod:
HTML:
<body onload="javascript:location.href='adres'">
3.cod:
HTML:
<script type="text/javascript"> window.location.assign("adres");</script>
 

florida1

Basic
Joined
21.10.21
Messages
8
Reaction score
0
Points
1
If you want Linkin to open on a different page. then after the site target="_blank"
 

05smartsufi

Basic
Joined
01.12.21
Messages
4
Reaction score
0
Points
0
If you want Linkin to open on a different page. then after the site target="_blank"
This was one of the first things I applied, when learning HTML nearly three decades ago. I use It daily when referencing links on my blogs.

A basic guide, yet beneficial to those who're new to HTML & JavaScript.

 

knull

Basic
Joined
13.07.21
Messages
3
Reaction score
0
Points
0
You could have added html redirect...
HTML:
<meta http-equiv="Refresh" content="0; url=https://sinister.ly">
 
Top Bottom