Skip to content

Instantly share code, notes, and snippets.

@kypflug
Created May 12, 2016 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kypflug/ee8c65d37d25c5bff1f55fee516f9cc7 to your computer and use it in GitHub Desktop.
Save kypflug/ee8c65d37d25c5bff1f55fee516f9cc7 to your computer and use it in GitHub Desktop.
URL input demo using aria-describedby
<form>
<label for="url">Link to avatar:</label>
<input type="url" id="url" aria-describedby="url-desc" required />
<p id="url-desc">Include the protocol (http:// or https://) with the URL. The image format must be either PNG, JPEG, or SVG. Maximum dimensions are 800×800 pixels.</p>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment