HTML/CSS

From Things and Stuff Wiki
Jump to navigation Jump to search


Standards

to merge from bits of design. aaand break out. and generally sort.

See also HTTP, Documents








  • http://en.wikipedia.org/wiki/Open_Web_Platform - OWP, a collection of Web technologies developed by the World Wide Web Consortium and other Web standardization bodies such as the Unicode Consortium, the Internet Engineering Task Force, and Ecma International. It is the umbrella term introduced by the World Wide Web Consortium, and in 2011 it was defined as "a platform for innovation, consolidation and cost efficiencies" by W3C CEO Jeff Jaffe. The standards of the Open Web Platform are at different maturity levels, and the development of most standards is still in progress.

OWP covers Web standards such as HTML5, CSS 2.1, CSS3 (including the Selectors, Media Queries, Text, Backgrounds and Borders, Colors, 2D Transformations, 3D Transformations, Transitions, Animations, and Multi-Columns modules), CSS Namespaces, SVG 1.1, MathML 3, WAI-ARIA 1.0, ECMAScript 5, 2D Context, WebGL, Web Storage, Indexed Database API, Web Workers, WebSocket Protocol/API, Geolocation API, Server-Sent Events, Element Traversal, DOM Level 3 Events, Media Fragments, XMLHttpRequest, Selectors API, CSSOM View Module, Cross-Origin Resource Sharing, File API, RDFa, WOFF, HTTP 1.1 (part 1-7), TLS 1.2, and IRI.


  • web-platform-tests dashboard - displays results for the web-platform-tests, or WPT, which are a group of test suites for many web platform specifications. If the web platform as a whole were an engineering project, it'd be crazy not to have a test suite that's run regularly. The goal of the WPT Dashboard is to promote viewing the web platform as one entity and to make identifying and fixing interoperability issues as easy as possible. The WPT Dashboard project is comprised of two parts: Running: currently the goal is to run WPT in Chrome, Edge, Firefox, and Safari daily, Serving: this site, wpt.fyi, displaying test results.


See also Data



  • W3C TAG Ethical Web Principles - This document is intended to guide thoughtful development of web platform technologies, for standards developers and website authors alike. In particular, the purpose of this document is to inform wide review of new charters, new specifications, and candidate additions to published recommendations, as well as to support work on other horizontal review documents, such as the Web Platform Design Principles, Self-Review Questionnaire: Security and Privacy, or other similar checklists and sets of principles.


HTML

CSS


  • 30 Seconds of CSS - A curated collection of useful CSS snippets you can understand in 30 seconds or less. [7]


Editing software

See Editors, IDE, Vim, SSH, Web platforms, Static sites


  • https://en.wikipedia.org/wiki/HTML_editor - a program used for editing HTML, the markup of a web page. Although the HTML markup in a web page can be controlled with any text editor, specialized HTML editors can offer convenience, added functionality, and organisation. For example, many HTML editors handle not only HTML, but also related technologies such as CSS, XML and JavaScript or ECMAScript. In some cases they also manage communication with remote web servers via FTP and WebDAV, and version control systems such as Subversion or Git. Many word processing, graphic design and page layout programs that are not dedicated to web design, such as Microsoft Word or Quark XPress, also have the ability to function as HTML editors. There are two main varieties of HTML editors: text and WYSIWYG (what you see is what you get, editors.


Docs, guides, etc.

Basics

Resources

  • W3Techs - World Wide Web Technology Surveys


Articles

Project basics

Favicon

Articles





Tools

JavaScript




Resets, normalize, etc.

See also WebDev#Templates and Frameworks

Different browsers have different defaults. You can either reset them to zero, or normalise with cross-browser sensible defaults.








  • Element CSS - a CSS design / framework that only requires simple HTML elements for building a site. In contrast to most design frameworks that use a lot of nested
    elements and inline classes, Element does away with that, making it quicker and easier to create decent-looking static web sites from scratch that are easy to edit and manage with just a text editor.Think of it as a "Markdown for HTML", or "saner defaults for HTML elements".


  • tacit - a CSS framework for dummies, who want their web services to look attractive but have almost zero skills in graphic design


  • Water.css - a just-add-css collection of styles to make simple websites like this just a little bit nicer. Get it already!Now you can write your simple static site with nice semantic html, and Water.css will manage the styling for you. [18]





  • Water.css - a drop-in collection of CSS styles to make simple websites like this just a little bit nicer. Now you can write your simple static site with nice semantic html, and Water.css will manage the styling for you.

Polyfills, shim/shivs

For fixing the lack of HTML5/CSS3 support in older browsers.

  • Modernizr is a small JavaScript library that detects the availability of native implementations for next-generation web technologies, i.e. features that stem from the HTML5 and CSS3 specifications. Many of these features are already implemented in at least one major browser (most of them in two or more), and what Modernizr does is, very simply, tell you whether the current browser has this feature natively implemented or not.]

Filters


Elements and structure

Outline

 <body>
 <h1>heading text</h1>
  <section><h2>heading text...
   <section><h3>heading text...
    <section><h4>heading text...
     <section><h5>heading text...
       <section><h6>heading text...

hrm;

Doctype

Meta

Style

Script

 <script type="text/javascript" src="http://use.typekit.com/rwc5tlm.js"></script>

 <script type="text/javascript">try{Typekit.load();}catch(e){}</script>

Sections

  • sections;
    • body, main, section, nav, article, aside, h1, h2, h3, h4, h5, h6, hgroup, header, footer, address

main

Grouping

  • p, hr, pre, blockquote, ol, ul, li, dl, dt, dd, figure, figcaption, div

div

Lists

list-style: disc | circle | square

From Wikipedia;

list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAANAQMAAABb8jbLAAAABlBMVEX///8AUow5QSOjAAAAAXRSTlMAQObYZgAAABNJREFUCB1jYEABBQw/wLCAgQEAGpIDyT0IVcsAAAAASUVORK5CYII=);

Horizontal list;

#navlist li {
  display: inline;
  list-style-type: none;
  padding-right: 20px;
}

text level

    • a, em, strong, small, s, cite, q, dfn, abbr, data, time, code, var, samp, kbd, sub/sup, i, b, u, mark, ruby, rt, rp, bdi, bdo, span, br, wbr

a

Using target="_blank" will instruct the browser to create a new browser tab or window when the user clicks on the link.


span

Comments

<!-- this is
 a multiline
 comment -->

Images

See Graphics



  • https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture - contains zero or more elements and one element to offer alternative versions of an image for different display/device scenarios. The browser will consider each child element and choose the best match among them. If no matches are found—or the browser doesn't support the element—the URL of the element's src attribute is selected. The selected image is then presented in the space occupied by the element.



Quote

Forms and input


Commands

Video

attribute float playbackRate;


Tab order

Pseudo-elements

q::before { content: "»" }
q::after { content: '«' }

Was just one colon, but CSS3 added another to distinguish from pseudo-classes.

content: "";
  needed to display
element {
  position: relative;
  background: black; 
}

element:before, element:after {
  content: "";
  position: absolute;
  background: black;  /* Match the background */
  top: 0;
  bottom: 0;
  width: 9999px;   /* some huge width */
}

element:before {
  right: 100%; 
}

element:after {
  left: 100%;
}
html, body {
   overflow-x: hidden;
}

To the left;

element:after {
  display: none;
}

To the right;

element:before {
  width: 20px;
}

Step it up, step it up, it's alright.

Tables

Not bad for tabular data, styling has advantages and disadvantages..

<table border="1">
   <tr>
     <th colspan="2">Table header</th>
   </tr>
   <tr>
     <td>Table cell 1</td><td>Table cell 2</td>
   </tr>
 </table>

Units

  • 1em - element font size (affected by element nesting depth)
  • 1rem - root element font size
  • 1em = 16px (by default anyway)
  • 1px (css pixel) = 1/96in
  • 1vp = 1% viewport width
  • 1in (inch) = 2.539954cm
  • 1pt (point) = 1/72in
  • 1pc (pica) = 12pt
  • vw - Equal to 1% of the width of the initial containing block.
  • vh - Equal to 1% of the height of the initial containing block.
  • vmin - Equal to the smaller of ‘vw’ or ‘vh’.
  • vmax - Equal to the larger of ‘vw’ or ‘vh’.

These new properties allow you to scale font sizes according to the viewport dimensions, i.e.

1vw is 1% of the viewport width
1vh is 1% of the viewport height
1vmin is the smallest of 1vw and 1vh

For example, assume your browser viewport is set to 1,000 x 1,200 pixels:

1.5vw = 15px font size
1.5vh = 18px font size
1.5vmin = min(1.5vw, 1.5vh) = 15px font size







rem

v*

100vw == window.width

examples

color

The color CSS property sets the foreground color of an element's text content, and its decorations. It doesn't affect any other characteristic of the element; it should really be called text-color and would have been named so, save for historical reasons and its appearance in CSS Level 1. Note that, the color value must be a uniform color, eventually not completely opaque, and can't be a <gradient> which is a <image> in CSS.

color: red;                     // A CSS Level 1 color
color: orange;                  // The only color added in CSS Level 2 (Revision 1)
color: antiquewhite;            // A CSS Level 3 color, sometimes called a SVG or X11 color.
color: #0f0;                    // The color 'lime' defined using the 3-character dash notation.
color: #00ff00                  // The color 'lime' defined using the 6-character dash notation.
color: rgba( 34, 12, 64, 0.3);  // A color defined using of the available functional notations.
color: currentColor;            // The special keyword representing the color's value of its direct ancestor
color: inherit
#bada55, etc.

Selectors

h1 > h2
  child combinator
  just matching first order descendant elements



Specificity

HN: 256 CSS Classes Can Override an #id

!important

Attribute selectors

img[src*="hideme"] {
  display: none;
}

Pseudo-classes

From Pseudo Class Selectors;

:root
  Selects the element that is at the root of the document. Almost certainly will select the <html> element, unless you are specifically working in some weird environment that somehow also allows CSS. Perhaps XML.

:first-child
  Selects the first element of its type within a parent.

:last-child
  Selects the last element of its type within a parent.
:nth-child(N)
  Selects elements based on a simple provided algebraic expression (e.g. "2n" or "4n-1"). Has the ability to do things like select even/odd elements, "every third", "the first five", and things like that. Covered in more detail here with a tester tool.

:nth-of-type(N)
  Works like :nth-child, but used in places where the elements at the same level are of different types. Like if inside a div you had a number of paragraphs and a number of images. You wanted to select all the odd images. :nth-child won't work there, you'd use div img:nth-of-type(odd). Particularly useful when working with definition lists and their alternating -dt- and -dd- elements.

:first-of-type
  Selects the first element of this type within any parent. So if you have two divs, each had within it a paragraph, image, paragraph, image. Then div img:first-of-type would select the first image inside the first div and the first image inside the second div.

:last-of-type
  Same as above, only would select the last image inside the first div and the last image inside the second div.

:nth-last-of-type(N)
  Works like :nth-of-type, but it counts up from the bottom instead of the top.

:nth-last-child(N)
  Works like :nth-child, but it counts up from the bottom instead of the top.

:only-of-type
  Selects only if the element is the only one of its kind within the current parent.
  • selectivizr is a JavaScript utility that emulates CSS3 pseudo-classes and attribute selectors in Internet Explorer 6-8. Simply include the script in your pages and selectivizr will do the rest.
lang

Parent

CSS Selectors 4 Spec

Layout

width

display

display: block - default 100% width, flows vertically
display: inline - consumes width of content, flows horizontally
display: inline-block
display: table-cell - vertical align method [25]
  http://www.quirksmode.org/css/display.html

float

float - floats element next to containing box or other floated element

clear

position

position: absolute - out of flow
position: fixed

sticky

vertical align

margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
.element {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

overflow

prevent scrollbars

z-index

z-index works only on absolute or relative positioned elements.

via js;

object.style.zIndex="1"

Flexbox




CSS Grid



box-sizing

clip

Tips

css is stoopid

Text

See also Typography

font-weight

font-weight: normal;
font-weight: bold;

/* Relative to the parent */
font-weight: lighter;
font-weight: bolder;

font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400;
font-weight: 500;
font-weight: 600;
font-weight: 700;
font-weight: 800;
font-weight: 900;

font-weight: inherit;

font-style

font-style: normal;
font-style: italic;
font-style: oblique;
font-style: inherit;


font-variant-numeric

font-variant-numeric: oldstyle-nums;

text-align

text-align [ start | end | left | right | center ] || <string> ] | justify | match-parent | start end

text-rendering

text-rendering auto | optimizeSpeed | optimizeLegibility | geometricPrecision

"Basically, setting the value of “optimizeLegibility” for the “text-rendering” property lets you enable things like ligatures and more accurate kerning (the spacing between letters), which, as the name of the value implies, leads to improved legibility and an overall better appearance of the text as unnecessary spaces are eliminated where possible."

"There are actually significant, effectively fatal performance problems (such as 30-second loading delays, or longer) on mobile devices when using optimizeLegibility for long pages."

text-transform

text-transform:  none | capitalize | uppercase | lowercase | full-width

text-shadow

text-shadow: 0 1px 0 rgba(255,255,255,.1);
color: #fff;
text-shadow: 0 0 40px rgba(255,255,255,.25);

See also Style#Shadows

text-stroke

Webkit only.

  • strokeText.js is an unobtrusive javascript library working in all the major browsers - Mozilla Firefox 1.5+, Opera 9+, Safari and IE6+. The library provides cross API text stroking capability for Canvas and VML. The (built in) sans-serif font is also adapted for SVG to ensure an identical representation.

text-overflow

text-overflow  [ clip | ellipsis | <string> ]
  determines how overflowed content that is not displayed is signaled to the users.

or with gradient; http://xion.org.pl/2011/12/26/text-ellipsis-with-gradient-fade-in-pure-css/

word-wrap

mask-image

Other

Properties

background

  • background transparent || none || repeat || scroll || 0% 0%
background: #f00;
background: url('http://example.com/image.png');
background: url(bgimage.jpg) no-repeat;
.multi_bg_example {
  background: url(http://demos.hacks.mozilla.org/openweb/resources/images/logos/firefox-48.png),
    linear-gradient(to right, rgba(255, 255, 255, 0),  rgba(255, 255, 255, 1)),
      url(http://demos.hacks.mozilla.org/openweb/resources/images/patterns/flowers-pattern.jpg);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: bottom right, left, right;
}

background-color

background-color: white;

background-image

background-image: url('file.png')

background-repeat

background-repeat: no-repeat;
  stops the image repeating (tiling)

background-position

background-position: 0% 0%
background-position: top;
background-position: bottom;
background-position: left;
background-position: right;
background-position: center;
background-position: 25% 75%;
background-position: 0px 0px, center;

background-attachment

background-attachment: scroll / fixed / local;

background-size

background-size: 100%;
  make background exactly fit element

background-size: 50% 50%;

background-clip

background-clip: border-box / padding-box / content-box;
   specifies whether an element's background, either the color or image, extends underneath its border.
background-clip: text;
  works well with text-fill-color: transparent;

border

border:  <border-width> || <border-style> || <color>
element { border: dashed }          /* dashed border of medium thickness, the same color as the text */
element { border: dotted 1.5em }    /* dotted, 1.5em thick border, the same color as the text */
element { border: solid red }       /* solid, red border of medium thickness */
element { border: solid blue 10px } /* solid, blue border of 10px thickness */



border-radius

broder-radius [ <length> | <percentage> ]{1,4} [ / [ <length> | <percentage> ]{1,4} ]?

gradients



linear

linear-gradient([ [ [ <angle> | to [top | bottom] || [left | right] ],]? <color-stop>[, <color-stop>]+);
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
background-image: linear-gradient(to bottom right, red, rgba(255,0,0,0));


  1. 00ffffff colour breaks Sass (argb hex)

radial

Tools


gradient borders

mask

No IE or FF [35]. FF SVG hack.

box-shadow

box-shadow: inset? <offset-x> <offset-y> <blur-radius>? <spread-radius>? <color>?, .etc

box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 0.3em 10px -8px black;

See also Style#Shadows

white-space

outline

opacity

transform

  • CSS3Warp is a small (<8kb minified unzipped) javascript library for warping any HTML text around an arbitrary path. Text will look as if it were created with Illustrator's attach-to-path tool. Anyway it is pure HTML text that can be styled with CSS, copied and crawled. csswarp works standalone and does not rely on jQuery or another library (a jQuery plugin is in the works though). csswarp.js offers an extensive number of settings to adjust text warping. Right now it will work in every modern browser that supports css3 transforms. Support for IE versions <9 is planned for a future release.

transition

body {
  transition:all .5s ease-in-out; 
  -o-transition:all .5s ease-in-out; 
  -moz-transition:all .5s ease-in-out; 
  -webkit-transition:all .5s ease-in-out;
}
transition: color 1s ease;
transition: background 1s ease;
transition: background-color 1s ease;
transition-timing-function: ease
transition-timing-function: ease-in
transition-timing-function: ease-out
transition-timing-function: ease-in-out
transition-timing-function: linear
transition-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1)
transition-timing-function: step-start
transition-timing-function: step-stop
transition-timing-function: steps(4, end)

transition-timing-function: ease, step-start, cubic-bezier(0.1, 0.7, 1.0, 0.1)

wrap

filter

cursor

color


  • Mother-effing hsla() - HSL(a) is the jam. It's a piece of cake to do mentally, too. Hue is like this: ROY G BIV is 0 to 300, and then back to red again at 360. Saturation % is from grey to intense color; lightness % and alpha 0-1 are easy 'nuff. read more on hsl awesomeness. Another HSL colorspace mnemonic: our friends RGB are at 0, 120, and 240. And yellow, cyan, magenta (from CMYK) are split between those ones at 60, 180, and 300. Naice!


scroll-padding-*

Custom properties

  • Using CSS custom properties (variables) - CSS: Cascading Style Sheets | MDN - sometimes referred to as CSS variables or cascading variables) are entities defined by CSS authors that contain specific values to be reused throughout a document. They are set using custom property notation (e.g., --main-color: black;) and are accessed using the var() function (e.g., color: var(--main-color);). Complex websites have very large amounts of CSS, often with a lot of repeated values. For example, the same color might be used in hundreds of different places, requiring global search and replace if that color needs to change. Custom properties allow a value to be stored in one place, then referenced in multiple other places. An additional benefit is semantic identifiers. For example, --main-text-color is easier to understand than #00ff00, especially if this same color is also used in other contexts.




CSS forms

Shapes

Shapes (old)

Buttons

  • Buttonize - The Instant Button Companion v3.1

Icons

See also Typography#Webfont icons, Graphics#Icons

Shapes

Patterns

Tooltips

  • Hint.css is a tooltip library written in SASS which uses only HTML/CSS to create simple tooltips.

Forms

Animations

Other

Sprites

ls
  1.png  2.gif  dot.png  phoney.gif  tw.gif
convert *png *gif -append result/result-sprite.png

Canvas





Text


  • CanvasText is a library written in JavasScript that lets you write styled text easier and with a similar HTML & CSS syntax.


Images


Screenshots


Polyfill


Extensions


Other

  • Ejecta - A Fast, Open Source JavaScript, Canvas & Audio Implementation for iOS

Animation

Tools



Examples

3D

Javascript

Menus

Filters

only chrome has native support as of nov 2012.

Header, footer

Tabs

Iframes


Full screen

Scrollbars

See also JS

Printing


CSS libraries

Data URI

 <img src="data:image/gifbase64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
       alt="transparent placeholder" />


Data Attributes


article[data-columns='3']{
  width: 400px;
}
article[data-columns='4']{
  width: 600px;
}

Microdata

See also Semantic web, Data


  • https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/itemprop - used to add properties to an item. Every HTML element can have an itemprop attribute specified, and an itemprop consists of a name-value pair. Each name-value pair is called a property, and a group of one or more properties forms an item. Property values are either a string or a URL and can be associated with a very wide range of elements including <audio>, <embed>, <iframe>, <img>, <link>, <object>, <source> , <track>, and <video>.

IndexedDB

webstorage

  • Storage interface
  • sessionStorage attribute
  • localStorage attribute
  • storage event
  • etc.
  • dustbin - A slim wrapper around localStorage and sessionStorage that allows for NoSQL style access. It's basically a JSON-backed object database for your web browser.
  • SASStore - Simple binary string data store for local storage in the browser.

Media

See JS libs#Media


SMIL

  • W3C Synchronized Multimedia Home page - The Synchronized Multimedia Integration Language (SMIL, pronounced "smile") enables simple authoring of interactive audiovisual presentations. SMIL is typically used for "rich media"/multimedia presentations which integrate streaming audio and video with images, text or any other media type. SMIL is an easy-to-learn HTML-like language, and many SMIL presentations are written using a simple text-editor. For a more detailed description of the goals of the SMIL language, see the W3C Activity Statement on Synchronized Multimedia; a regularly updated report to W3C members that is also available to the public. The public is invited to send comments and information requests about SMIL to the public mailing list www-smil@w3.org (public archives). The SYMM WG is closed since 01 April 2012. You may find related topics in the following Working Groups: HTMLWG (for example HTML5 video element); CSS WG (for example CSS Transitions Module Level 3 ); Media fragments WG (for example the syntax for constructing media fragment URIs ) Following the closure of the SYMM WG, the current Synchronized Multimedia Home page is not maintained anymore. If you encounter broken links, these are du change of URI by the publisher without convinient forward to the new URI.


  • Synchronized Multimedia Integration Language (SMIL 3.0) - This document specifies the third version of the Synchronized Multimedia Integration Language (SMIL, pronounced "smile"). SMIL 3.0 has the following design goals: Define an XML-based language that allows authors to write interactive multimedia presentations. Using SMIL, an author may describe the temporal behaviour of a multimedia presentation, associate hyperlinks with media objects and describe the layout of the presentation on a screen. Allow reusing of SMIL syntax and semantics in other XML-based languages, in particular those who need to represent timing and synchronization. For example, SMIL components are used for integrating timing into XHTML [XHTML10] and into SVG [SVG]. Extend the functionalities contained in the SMIL 2.1 [SMIL21] into new or revised SMIL 3.0 modules. Define new SMIL 3.0 Profiles incorporating features useful within the industry.


  • https://en.wikipedia.org/wiki/Synchronized_Multimedia_Integration_Language - a World Wide Web Consortium recommended Extensible Markup Language (XML) markup language to describe multimedia presentations. It defines markup for timing, layout, animations, visual transitions, and media embedding, among other things. SMIL allows presenting media items such as text, images, video, audio, links to other SMIL presentations, and files from multiple web servers. SMIL markup is written in XML, and has similarities to HTML. Members of the World Wide Web Consortium (also known as the "W3C") created SMIL for streaming media presentations, and published SMIL 1.0 in June 1998. Many of these W3C members helped author several versions of SMIL specifications between 1996 (when the first multimedia workshops were hosted by the W3C) and 2008 (when SMIL 3.0 was published). SMIL is an XML-based application, and is a part of many Multimedia Messaging Service (MMS) applications. SMIL can be combined with other XML-based specifications such as with SVG (as has been done with SVG animation) and with XHTML (as done with HTML+TIME).


  • https://github.com/sagiadinos/garlic-creator - an easy to use programm to create SMIL indexes. They can be export or transfered via network (Rest-API) to SMIL compatible media player) This is suitable for simple digital signage use cases.




  • A-SMIL.org - an "Advocacy for SMIL" (hence A-SMIL) as an open standard for digital signage. Thank you for all your support. We are on Google's page 1 for search on SMIL.


  • What is a Digital Signage Player? | unlike other media players - In this article, you will learn in detail what is the difference between a digital signage player and conventional playback programs like the VLC player, QuickTime player or MPlayer. Furthermore, I will introduce you to a standard called SMIL, which gives you a lot of freedom.

Web Components





  • Polymer - a new type of library for the web, built on top of Web Components, and designed to leverage the evolving web platform on modern browsers. A set of polyfills (Shadow DOM, Custom Elements, HTML Imports), and a next-generation web application framework built upon these core technologies called the Polymer.




Shadow DOM

Custom Elements

  • X-Tag is a small JavaScript library, created and supported by Mozilla, that brings Web Components Custom Element capabilities to all modern browsers.

Accessibility

  • https://en.wikipedia.org/wiki/Web_accessibility - or eAccessibility, is the inclusive practice of ensuring there are no barriers that prevent interaction with, or access to, websites on the World Wide Web by people with physical disabilities, situational disabilities, and socio-economic restrictions on bandwidth and speed. When sites are correctly designed, developed and edited, more users have equal access to information and functionality.

For example, when a site is coded with semantically meaningful HTML, with textual equivalents provided for images and with links named meaningfully, this helps blind users using text-to-speech software and/or text-to-Braille hardware. When text and images are large and/or enlargeable, it is easier for users with poor sight to read and understand the content. When links are underlined (or otherwise differentiated) as well as colored, this ensures that color blind users will be able to notice them. When clickable links and areas are large, this helps users who cannot control a mouse with precision. When pages are not coded in a way that hinders navigation by means of the keyboard alone, or a single switch access device alone, this helps users who cannot use a mouse or even a standard keyboard. When videos are closed captioned, chaptered, or a sign language version is available, deaf and hard-of-hearing users can understand the video. When flashing effects are avoided or made optional, users prone to seizures caused by these effects are not put at risk. And when content is written in plain language and illustrated with instructional diagrams and animations, users with dyslexia and learning difficulties are better able to understand the content. When sites are correctly built and maintained, all of these users can be accommodated without decreasing the usability of the site for non-disabled users.





  • https://knowbility.org/about - a nonprofit organization based in Austin, Texas and an award-winning leader in accessible information technology. Our mission is to create an inclusive digital world for people with disabilities.


W3C

  • https://en.wikipedia.org/wiki/Web_Accessibility_Initiative - an effort to improve the accessibility of the World Wide Web for people with disabilities. People with disabilities encounter difficulties when using computers generally, but also on the Web. Since they often require non-standard devices and browsers, making websites more accessible also benefits a wide range of user agents and devices, including mobile devices, which have limited resources. According to a US government study, 71% of website visitors with disabilities will leave a website that is not accessible.

The W3C launched the Web Accessibility Initiative in 1997 with endorsement by The White House and W3C members. It has several working groups and interest groups that work on guidelines, technical reports, educational materials and other documents that relate to the several different components of web accessibility. These components include web content, web browsers and media players, authoring tools, and evaluation tools.


WCAG


ARIA

  • https://en.wikipedia.org/wiki/WAI-ARIA - Accessible Rich Internet Applications (WAI-ARIA) is a technical specification published by the World Wide Web Consortium (W3C) that specifies how to increase the accessibility of web pages, in particular, dynamic content, and user interface components developed with Ajax, HTML, JavaScript, and related technologies. In the 15 September 2008 working draft, SVG 1.2 Tiny added support for WAI-ARIA. On 20 March 2014, WAI-ARIA 1.0 became a completed W3C Recommendation. 14 December 2017 saw the release of WAI-ARIA 1.1.

Web developers increasingly use client-side scripts to create user interface controls that cannot be created with HTML alone. They also use client-side scripts to update sections of a page without requesting a completely new page from a web server. Such techniques on websites are called rich Internet applications. These user interface controls and content updates are often not accessible to users with disabilities, especially screen reader users and users who cannot use a mouse or other pointing device. WAI-ARIA allows web pages (or portions of pages) to declare themselves as applications rather than as static documents, by adding role, property, and state information to dynamic web applications. ARIA is intended for use by developers of web applications, web browsers, assistive technologies, and accessibility evaluation tools.

WAI-ARIA describes how to add semantics and other metadata to HTML content in order to make user interface controls and dynamic content more accessible. For example, with WAI-ARIA it is possible to identify a list of links as a navigation menu and to state whether it is expanded or collapsed. Although originally developed to address accessibility issues in HTML, the use of WAI-ARIA is not limited to HTML: in principle, it can also be used in other markup languages such as Scalable Vector Graphics (SVG).



Specs

  • WAVE Web Accessibility Evaluation Tools - a suite of evaluation tools that helps authors make their web content more accessible to individuals with disabilities. WAVE can identify many accessibility and Web Content Accessibility Guideline (WCAG) errors, but also facilitates human evaluation of web content. Our philosophy is to focus on issues that we know impact end users, facilitate human evaluation, and to educate about web accessibility.



BS 8878, Web accessibility - Code of Practice, is consistent with the Equality Act 2010 and is referenced in the UK government’s e-Accessibility Action Plan

Headings should not be removed using display:none, because it removes the headings from assistive technology. Instead headings can be made invisible to sighted users using CSS class="element-invisible". [56]






Colour blindness


Screen readers






Web Annotations

See Data#Web annotation

Misc

Compatibility

Various methods and polyfills.

robots.txt

Other





Tools


Future