Saturday, August 7, 2021

Difference between HTML and HTML 5?

 Ans:

FeaturesHtmlHtml5
definitionA hypertext markup language (HTML) is the primary language for developing web pages.HTML5 is a new version of HTML with new functionalities with markup language with Internet technologies.
Multimedia supportLanguage in HTML does not have support for video and audio.HTML5 supports both video and audio.
StorageThe HTML browser uses cache memory as temporary storage.HTML5 has the storage options like:application cache, SQL database, and web storage.
Browser compatibilityHTML is compatible with almost all browsers because it has been present for a long time, and the browser made modifications to support all the features.In HTML5, we have many new tags, elements, and some tags that have been removed/modified, so only some browsers are fully compatible with HTML5.
Graphics supportIn HTML, vector graphics are possible with tools LikeSilver light, Adobe Flash, VML, etc.In HTML5, vector graphics are supported by default.
ThreadingIn HTML, the browser interface and JavaScript running in the same thread.The HTML5 has the JavaScript Web Worker API, which allows the browser interface to run in multiple threads.
StorageUses cookies to store data.Uses local storage instead of cookies
Vector and GraphicsVector graphics are possible with the help of technologies like VML, Silverlight, Flash,etc.Vector graphics is an integral part of HTML5, SVG and canvas.
ShapesIt is not possible to create shapes like circles, rectangles, triangles.We can draw shapes like circles, rectangles, triangles.
Doc typeDoctype declaration in html is too long
<! DOCTYPE HTML PUBLIC "- // W3C // DTD HTML 4.01 // EN" "http://www.w3.org/TR/html4/strict.dtd">
The DOCTYPE declaration in html5 is very simple "<! DOCTYPE html>
Character EncodingCharacter encoding in HTML is too long.
<! DOCTYPE HTML PUBLIC "- // W3C // DTD HTML 4.0 Transitional // EN">
Character encoding declaration is simple <meta charset = "UTF-8">
Multimedia supportAudio and video are not the part of HTML4.Audio and video are essential parts of HTML5,like: <Audio>, <Video>.
Vector GraphicsIn HTML4, vector graphics are possible with the help of techniques like VML, Silver light and Flash.Vector graphics are an integral part of HTML5, SVG, and canvas.
Html5 uses cookies.It supplies local storage in place of cookies.
ShapesIt is not possible to draw shapes like circles, rectangles, triangles.Using html5, you can draw shapes like circles, rectangles, triangles.
Browser SupportWorks with all older browsersA new browser supports this.

No comments:

Post a Comment