Okay, so I figured out how to redirect people. But i’m not that good at html and wasn’t sure about something.
<HTML>
<HEAD>
<!-- Send users to the new location. -->
<TITLE>redirect</TITLE>
<META HTTP-EQUIV="refresh"
CONTENT="10;URL=http://www.netmechanic.com">
</HEAD>
<BODY>
This page has moved. You will be
automatically redirected
to its new location in 10 seconds.
If you aren't forwarded
to the new page,
<a href="http://www.netmechanic.com">
click here</a>.
</BODY>
</HTML>
Thats the script I found on another webpage to help me out, but how would I go about redirecting in a new tab or window? Would I just use the target command like normal?