Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.04 KB

DOCUMENTATION.md

File metadata and controls

49 lines (41 loc) · 1.04 KB

Documentation (temporary)

This is temporary file containing documentation of supported features. This will later be added to the project website's documentation.

Why a11yana?

  • Frameworks like bootstrap can be great, but...
  • inslusive design and accessibility first
  • minimal and clutter-free; great for people with cognitive impairment
  • classless; easy to implement
  • examples of best-practice accessibility

Elements and features

  • Optimized for any zoom level with any browser font size
  • Great browser support: 0.1% + not dead (explain better)

Skip link

<body id="body">
	<a href="#main">Skip to main content</a>

	...

Subtitles

<h*>
	This is the main title
	<span>This is the subtitle</span>
</h*>

Best practice/suggested semantics for accessibility

Blockquotes

<blockquote>
	<p>Some quote goes here.</p>
</blockquote>
<figure>
	<blockquote>
		<p>Some quote goes here.</p>
	</blockquote>
	<figcaption>
		<cite>The author</cite> and a reference to the work.
	</figcaption>
</figure>