not working in forms.
Should change it to “Submit”
not working in forms.
Should change it to “Submit”
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]
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]
When you are developing a site, sometimes you need a dummy text for placeholder.
Here it is! The simply dummy text site, Lorem Ipsum
Html内の<img>にハイパーリンク<a>を付けるとboarderが出てしまう。
[html]<a href=""><img src="" width="" height="" <strong>boarder="0"</strong>></a>[/html]