Web-Site Link

T

Thomas A. Rowe

You type it as:

http://www.yourdomainname.com


--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
A

Andrew Murray

Select the text, right click, choose Insert > Hyperlink, then choose the
"email" link in the dialogue, put the address in and click OK.
 
T

Trevor L.

Or if you are into writing code, place this into the HTML

<form name="eMailer" action="">
<b>E-Mail this link to a friend</b><br>
Enter recipient's e-mail:<br>
<input type="text" name="address" size="30"><br>
<input type="button" value="Send this URL" onClick="mailThisUrl();">
</form>

and add this code in a linked external JS file or between
<script></script>
function mailThisUrl()
{
var subj = "I thought this might interest you...";
var text = "Here is an interesting Website: "
var content = new Array()
content[0] = "mailto:"
content[1] = document.eMailer.address.value
content[2] = "?subject="
content[3] = subj
content[4] = "&body="
content[5] = text
content[6] = parent.document.title
content[7] = " ("
content[8] = parent.location
content[9] = ")"
content = content.join("")
if (checkEmailAddress(document.eMailer.address))
window.location = content
}
 
Top