Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!-- Explicit label association --> <label for="email">Email address</label> <input type="email" id="email" name="email" required> <!-- Implicit (wrapping) --> <label> Password <input type="password" name="password"> </label> <!-- aria-label for icon buttons --> <button aria-label="Close dialog"> <svg aria-hidden="true">...</svg> </button> <!-- aria-describedby for hints --> <input type="password" id="pw" aria-describedby="pw-hint"> <p id="pw-hint">Must be at least 8 characters.</p>
Result
Open