button in Firefox and Chrome

not working in forms.

Should change it to “Submit”

Form Radio button click-able

Make the text on a radio button click-able.

[html]
<label><input type="radio" value="apple" name="fruit">Apple</label>
<label><input type="radio" value="orange" name="fruit">Orange</label>
<label><input type="radio" value="banana" name="fruit">Banana</label>
[/html]

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]

Lorem Ipsum – simply dummy text

When you are developing a site, sometimes you need a dummy text for placeholder.

Here it is! The simply dummy text site, Lorem Ipsum

Erase border in image + a tag

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

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