a link – hover, link visit…

All the status to work… the order is,

[css]
a: link
: visited
: hover
: active
[/css]

Back to top link

To create “back to top” link, we need 2 codes.

One for the top of the html page (at the top of the document after the <body> tag).

[html]<a name="top" id="top"></a>[/html]

(2 values of ID and NAME have to be equal for validation on validator.w3.org)

One for the link you want to show the link.

[html]<a href="#top">Back to top</a>[/html]

Erase border in image + a tag

Html内の<img>にハイパーリンク<a>を付けるとboarderが出てしまう。

[html]<a href=""><img src="" width=""  height="" <strong>boarder="0"</strong>></a>[/html]