'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>