How to Add a Favicon
(Shortcut Icon) when using Mydomain.com URL Forwarding
In MyDomain, when you manage URL forwarding of your domain, you can
enter a META Description
field. The line below is an exact
copy of what to insert there.
Veikkola"> <link rel="shortcut
icon"
href="http://koti.mbnet.fi/gkos/veikkolacom/veikkolacom.ico"><meta
http-equiv="refresh
This works independently of whether Stealth Forwarding is on or off.
You have to change of course the address of the icon and the
description Veikkola to what
you want. Do not add or leave out any quotes or other special
characters. The refresh part of it will take care that changes on the
page will appear when ever the page is loaded.
The result in the page source code will then look like this (you may
have to wait 30 to 60 minutes after changing the settings):
<META NAME="Description"
CONTENT="Veikkola"> <link rel="shortcut icon"
href="http://koti.mbnet.fi/gkos/veikkolacom/veikkolacom.ico"><meta
http-equiv="refresh">
You can see an example of this at: www.gkos.com
Simple HTML hints - Links without
underline and Highlighted text
How to make a Link without underline
Yes, sure you can do a link with no underline looking like this: www.gkos.com
by html code: <a href="http://www.gkos.com"
style="text-decoration: none;">www.gkos.com</a>
when you put this definition
within
<head>...</head> on your page:
<style type="text/css">
<!--
.nounderline { text-decoration: none}
-->
</style>
How to make HTML text with highlight
Yes, sure you can also do highlighted HTML text looking like this: HTML color
highlight
by html code: <b style="color: black; background-color: rgb(187,
255,
255);">HTML color highlight</b>
BUT... What a heck is this:
or
THIS: ? THE ANSWER>>