This survey closed on October 19, 2023. View Survey Results »

<main>, <nav>, <aside>, <header>, <footer>, <section>

Tell us more:
Tell us more:
Tell us more:

Make HTML elements focusable, allow or prevent them from being sequentially focusable

html
<div role="button" tabindex="0">I’m Tabbable</div>
Tell us more:
Tell us more:
Tell us more:

Facilitate keyboard focus navigation using the keyboard arrow keys among a set of focusable elements.

html
<div focusgroup="wrap horizontal">
	<!-- child elements -->
</div>
Tell us more:
Tell us more:
Tell us more:

Semantic element for wrapping search UI.

html
<search>
  <form action="search.php">
    <label>Find: <input name="q" type="search"></label>
    <button>Go!</button>
  </form>
</search>
Tell us more:
Tell us more:
Tell us more: