I've got a very simple form:
<label for="name">Name:</label>
<input class="inputbox" type="text" value="Your Name" size="13" name="name"/>
<label for="email">Email:</label>
<input class="inputbox" type="text" value="Email Address" size="13" name="email"/>
What's the best way to hide the form labels? I've tried using text-indent: -5000px to push it off the page but it won't budge. Is display: none bad practice in this instance?