HTML intro and HTML5 canvas play

Never mind some of these strange things for now. We are writing this html tutorial overview as an html document. It just seemed appropriate. This text is visible if the browser does not support the HTML5 canvas tag.

HTML stands for Hyper-Text Markup Language. It is the language behind webpages. It is also found embedded in apps when visual content is presented.

HTML is quite a simple document markup language. It can be read and edited in a normal text editor or with more complex tools. HTML became the format used for webpages because computers of all different types could view HTML documents.

w3schools have some good interactive tutorials.

1. Start Here: with w3schools HTML intro

http://www.w3schools.com/html/html_intro.asp On each page make sure and follow the "try it yourself" link. Change the code and hit "submit code" to see the results. The best way of learning languages is by playing or messing around with them. Keep a copy of your code and keep some tabs open of any particular messy code examples you create to show your mentor.

Follow the w3 schools tutorials until you have a grasp of some basic html. Or until you need a break! Take a quick skim over chapters once your brain starts to turn to marshmallow goo. Work through the chapters on:

Finish up with: HTML Quick-Reference. i.e. all there is to know about html on one page. It's quite simple really. Isn't it :).

2. HTML is an important STANDARD. Click each link in this section and read/skim.

HTML is an agreed standard. Standards are very important for different computer systems to communicate with each other. One standard is good. More than one standard and things start getting messy. Even when one standard is agreed things are always changing to make them better so you end up with some different versions of the same standard. It is very hard to have one useful standard and keep one agreed standard. XKCD on standards evolution

The W3C HTML working group is a collection of people from industry and academia. Changes to html standard are proposed, tested, discussed and eventually agreed by this group. Who are the HTML working group?

   503 group participants,
   503 in good standing,
   295 participants from 82 organizations
   208 Invited Experts
 

HTML history was caught up in early web development Microsoft Internet Explorer vs Netscape/Mozilla wars. In particular the way time and dates was implemented in javascript in different browsers led to some strange problems as well as frustration for web page developers. XKCD supports the ISO 8601 standard wikipedia:ISO 8601 The wars continue to this very day. Some interesting detail on HTML history. If you're cRaZy! Boring wikipedia HTML info. e.g. Tags for annoying blinking text never became part of the standard although they are still supported in some browsers! Wikipedia:the blink element

HTML has been around since 1990. Over the years various additions have been made. HTML5 is the latest addition: w3schools HTML5 new elements.

Each version of the HTML language . . .

3. Jump in Here: to w3schools HTML5 canvas object tutorial

http://www.w3schools.com/html/html5_canvas.asp

Follow the w3 schools tutorial for canvas. Take a look at the other HTML5 elements chapters also. Take a rest as soon as your brain starts to turn to marshmallow goo!

Now in our HTML we embed some javascript which does some painting in our canvas object. (But you cannot see that when the HTML is rendered.)