HTML/CSS/SVG
The official spec at www.w3.org is fine as a reference and the non-draft standards have a PDF option to download the spec. See generally http://www.w3.org/standards/webdesign/, and for HTML/CSS/SVG specifically the most recent ones as of this post seem to be:- HTML 5 (draft, 3/2012): http://www.w3.org/TR/2012/WD-html5-20120329/Overview.html
- CSS 2.1 (6/2011): http://www.w3.org/TR/2011/REC-CSS2-20110607/css2.pdf
- SVG 1.1 (8/2011): http://www.w3.org/TR/2011/REC-SVG11-20110816/REC-SVG11-20110816.pdf
Javascript
The best doc I could find is in CHM (windows help file format). You can read this file with xchm (e.g.,sudo aptitude install xchm
). The file itself is at:
http://starcraft73.tripod.com/javascript/javascript.zip
Jquery and Jquery-UI
There's a single CHM file that includes docs for both jquery and jquery-ui at https://github.com/Yahasana/jqdoc-parser/blob/master/jQuery-UI-Reference-1.8.chm?raw=true There's a PDF version of just JQuery at https://bitbucket.org/greydwarf/jquerydoc/downloads/jquery_ref.pdfD3.js
Getting D3 docs available offline requires a bit more work. Following roughly this guide, here are the steps:sudo aptitude install libxml2-dev libxslt-dev ruby1.8
gem install gollum
git clone https://github.com/mbostock/d3.wiki.git d3.wiki
cd d3.wiki ; gollum
- Navigate your browser to http://localhost:4567/ or whatever port gollum starts up on (it prints it out when it starts up).