HTML5 + CSS3 VS Standard HTML 4

As looking around the internet, I cannot find the desired comparison between HTML5 and standard HTML4. I know some of the benefits of HTML5 like multimedia and new components, etc. But I'm looking for a good comparison of the two. For example, I have the following questions.

  • What are the main advantages of HTML5 over standard HTML4 (I know a lot)
  • What are the disadvantages of using HTML5 (other than it didn't work until IE9)
  • What are the advantages and disadvantages of using HTML5 with CSS3 over standard HTML4 with CSS.

This is where I'm looking for both the advantages and disadvantages of using HTML5 and CSS3.

Thanks for the time.

+3


source to share


1 answer


In short:

<strong> Benefits:

  • Support for interactive media
  • Improved semantics
  • More intuitive development

Disadvantages:



  • Supported only in modern browsers

First, it is important to remember that the language itself is not considered complete. Thus, HTML5 is a continuation of earlier versions and is considered a language improvement.

As you mentioned in your question, the main disadvantage of HTML5 is that it is only supported by modern browsers (see http://html5test.com/ ). So if your target audience doesn't have access to a modern browser, HTML5 will definitely be a downside. This is also the main disadvantage of using CSS3.

The benefits will certainly outweigh the cons. This is a great resource that describes the many differences and benefits of using HTML5 - http://dev.w3.org/html5/html4-differences/ This site has the main advantages of CSS3 over CSS - http://www.magentojunction.com/blog/ advantages-of-css3-over-css /

+5


source







All Articles