What is HTML? HTML is a markup language. The word markup was used by editors who marked up manuscripts (usually with a blue pencil) when giving instructions for revisions. "Markup" now means something slightly different: a language with specific syntax that instructs a Web browser how to display a page. Once again, HTML separates "content" (words, images, audio, video, and so … [Read more...] about 7 Best HTML Tutorials and Resources
Programming Languages
jQuery Learning Resources
jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML DOM manipulation, event handling, animation, and Ajax simpler with an easy-to-use API that works across different browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript. jQuery Learning Resources Main jQuery … [Read more...] about jQuery Learning Resources
JavaScript Learning Resources
JavaScript Resources The online book "Eloquent JavaScript" is a free and excellent resource. http://eloquentjavascript.net W3schools tutorials: those are very good tutorials with practical hands on snippets that you can try in the browser in real time. http://www.w3schools.com/js/ Mozilla tutorials: This is an excellent JavaScript … [Read more...] about JavaScript Learning Resources
How to Use HTML5 Form Validation Patterns
What are HTML5 Form Validation Patterns When creating forms in HTML 5, you need a way to validate if the user inputted the correct data into a field. Using what is called a "pattern" attribute, you can make sure that the user did actually input the right data in a field. Different fields can accept different input, for example there are Name, Date, Phone, Email, and other field … [Read more...] about How to Use HTML5 Form Validation Patterns
What is jQuery?
jQuery is a common JavaScript library for reading and making changes to the Document Object Model (DOM). The DOM is a tree structure that contains information about what is shown on a webpage. We all know that HTML is a static document. JavaScript's functionality comes from its ability to manipulate the DOM, which is basically a JavaScript object. jQuery is fast and easy to … [Read more...] about What is jQuery?