This page contains materials and links that will prove helpful to web programmers. There are also materials present under the beginners menu.
It will be organized by topic into folders, each with its own index page.
Items of General Imporatance
Validation Tools
- The WWW HTML Validator will check the syntax on your pages and scold you when it's not up to snuff. Proper grammar in HTML makes everything else tons easier, so be ruthless with this excellent tool.
- The W3V CSS Validator will check the syntax on your CSS. When your page does not render as expected, have this comb through your code. It can save you hours of annoyance.
- JSHint will check out your JS code and help you to debug it.
- TypeScript gives you messages on improper use of types in JS. It's now an industry standard, so you might as well adopt it. It works with VSCode and shows type errors dynaically. Start using it or learn to like banging your head into the wall.
Programming References
- MDN Web Docs for HTML
- MDN Web Docs for CSS
- W3Schools has learning materials on HTML, CSS and JavaScript.