HTML/CSS/Form Tags/label
Версия от 09:21, 26 мая 2010; (обсуждение)
"label" creates a label and associates it with another element
<html>
<head>
<title>label element example</title>
</head>
<body">
<p>press Alt+A you will set focus on the text box.
<form>
<label for="tb" accesskey="a">
</label>
<input id="tb" type="text" value="textbox" size="20">
</form>
</p>
</body>
</html>