Maknib Posted February 9, 2012 Share Posted February 9, 2012 hi guys, i am wondering if the below link is correct? i would like to learn HTML5 but this says to me that we shouldn't use it yet as it's not fully supported. http://html5accessibility.com/ Quote Link to comment Share on other sites More sharing options...
trq Posted February 9, 2012 Share Posted February 9, 2012 While that link is indeed correct it's not really that simple. There are plenty of HTML5 features that are already supported and allot of tools that make unsupported features work. HTML5 is a moving standard still very much in it's infancy, but it is well worth looking at already. This article (and indeed website) will help you out: http://html5doctor.com/2022-or-when-will-html-5-be-ready Quote Link to comment Share on other sites More sharing options...
Stiver112 Posted March 4, 2012 Share Posted March 4, 2012 If you use tutorials such as the ones you find at W3schools it ussualy says what browsers that support the given feature. Then you can decide to use it or not. As far as i know most browsers support the main HTML5 functions by now so you should be able to use it on your website. Offcourse if you have visitors still using browsers like IE7 then mabye you should wait ;-) Quote Link to comment Share on other sites More sharing options...
paddysmith Posted March 14, 2012 Share Posted March 14, 2012 HTML5 defines rules for embedding SVG and MathML inside a regular HTML document. Support for SVG and MathML is not required though, so bonus points are awarded if your browser supports embedding these two technologies. SVG in text/html MathML in text/html Quote Link to comment Share on other sites More sharing options...
rythemton Posted March 23, 2012 Share Posted March 23, 2012 HTML5/CSS3 is the standard for mobile devices, so you need to learn it, even though it is still not complete. Quote Link to comment Share on other sites More sharing options...
nikey286 Posted April 19, 2012 Share Posted April 19, 2012 HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html>), within the web page content. HTML tags most commonly come in pairs like <h1> and </h1>, although some tags, known as empty elements, are unpaired, for example <img>. The first tag in a pair is the start tag, the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, tags, comments and other types of text-based content. Quote Link to comment Share on other sites More sharing options...
haku Posted April 19, 2012 Share Posted April 19, 2012 I'm using HTML5 in projects now, and adding the HTML5 shiv so that non-HTML5 browsers can handle it: <!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.