| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
* Humans are responsible for using these in accessible ways. * Easy to make accessible web pages; more work to make them inaccessible. * Always ask: What do these design/development decisions do for accessibility?
* A markup language to add structure and meaning to documents.
* Helps a browser read/interpret a document
* Helps other tech understand/interpret your document.
* #1 user of your site has no arms, legs, eyes, ears, etc: Search Engines
<!-- A HTML comment -->
<tagname attribute="value">Tag content</tagname>
<tagname attribute="value"/>* A style language to government presentation of specific parts of a document. * Helps a browser display a document * Separation helps you establish rules to use across documents. * Selectors help you pick specific parts of a document for styles
/* A CSS Rule */
selector {
property: value;
}How do you use them together?
Accessibility and HTML
Simple page structure
Multimedia
Navigation
Forms
Accessibility and CSS
Link styling
Hiding content
Colors and Contrast
Typography
Layouts for various devices and screen resolutions = Media Queries
Separate CSS = possible to provide alternative style sheets
| Back | FazBrowse Home | New Git URL |