Forum Moderators: open
<html>
<body>
<label for="lname">Last Name:</label>
<input type="text" name="lastname" id="lname" />
</body>
</html>
you could nest the input inside the label to give it a wider focus
<label for="lname">Last Name: <input type="text" name="lastname" id="lname" /> </label>
now imagine if that label was made into display: block it gives a much wider area for accessibility! IMHO It's the right tool for the job ;)
Suzy