Skip to main content

Web technology is a standard that allows to develop Web applications with the help of predefined sets of classes, objects, methods and properties available in a markup language, style sheet language , or programming language. It also provides an interface that allows the sharing of information between a Web server and its clients. Web server is a computer that stores and hosts a website to make it available to its clients with the help of a specific URL link.

Using different Web Technologies, create professional looking websites can be created. Dynamic Web pages can also be developed, which allow users to update, edit , and format the text and upload or replace images, photos, or videos without the help of a Web Designer. Some common Web technologies to develop websites are HTML, Javascript, CSS, XML, XHTML, AJAX, ASP.NET , PHP.

HTML was originally developed by TimBerners-Lee while at CERN. While working at CERN, he became frustrated at having to log on to different computers to find different information and thought that there must be a better way. He figured that there must be a way to hop from one set of information to another that’s on different computers. This concept of a hyper-text system (connected with the networking technology and protocols needed to pass information between computers) would go on to form the basis for the fundamental language of the world wide web –HTML. HTML is a markup language used to create Web pages. A markup language provides a way to describe the structure of text and graphics on a web page. HTML standard were and are created by World Wide Web consortium (W3C). It is derived from a more general markup language called Standard Generalized Markup Language (SGML), which is an International Organization for Standardization (ISO) technology that defines markup languages.

HTML5 is markup language for structuring and presenting content for the World Wide Web, and is a core technology of the Internet originally proposed by Opera Software. It is the fifth revision of the HTML standard (created in 1990 and standardized as HTML4 as of 1997) and, as of August 2012, is still under development. Its core aims have been to improve the language with support for the latest multimedia while keeping it easily readable by humans and consistently understood by computers and devices (web browsers, parsers, etc.). HTML5 is a cooperation between the World Wide Web Consortium (W3C) and the Web Hypertext Application Technology Working Group (WHATWG).WHATWG was working with web forms and applications, and W3C was working with XHTML 2.0. In 2006, they decided to cooperate and create a new version of HTML.

Some rules for HTML5 were established:

  • New features should be based on HTML, CSS, DOM, and JavaScript.
  • Reduce the need for external plugins (like Flash).
  • Better error handling.
  • More markup to replace scripting.
  • HTML5 should be device independent.
  • The development process should be visible to the public.

HTML5 -New Features

Some of the most interesting new features in HTML5:

The <canvas> element for 2D drawing

  • The <video> and <audio> elements for media playback
  • Support for local storage
  • New content-specific elements, like <article>, <footer>, <header>, <nav>, <section>
  • New form controls, like calendar, date, time, email, url, search

Blog 07. Differences Between HTML and HTML 5 You Should to Know

Difference between HTML and HTML5:

HTML

HTML5

DOCTYPE is much longer as HTML4 is based on SGML-based.
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN”
“http://www.w3.org/TR/html4/strict.dtd”>
DOCTYPE is required to enable standards mode for HTML documents.
<<!DOCTYPE html>
Audio and Video are not part of HTML4 specification. Audio and Videos are integral part of HTML5 specifications e.g. <audio> and<video> tags.
Vector Graphics is possible with the help of technologies such as VML, Silverlight, Flash etc Vector graphics is integral part of HTML5 e.g. SVG and canvas
It is almost impossible to get true GeoLocation of user browsing any website especially if it comes to mobile devices. JS GeoLocation API in HTML5 helps identify location of user browsing any website (provided user allows it)
Browser cache can be used as temporary storage. Application Cache, Web SQL database and Web storage is available as client side storage. Accessible using JavaScript interface in HTML5 compliant browsers.
Web Sockets are not available. Generally used mechanisms are long polling and streaming. Full duplex communication channels can be established with Server using Web Sockets.  Accessible using JavaScript interface in HTML5 compliant browsers.
Does not allow JavaScript to run in browser. JS runs in same thread as browser interface. Allows JavaScript to run in background. This is possible due to JS Web worker API in HTML5
Works with all old browsers Most of modern browser have started supporting HTML5 specification e.g. Firefox, Mozilla, Opera, Chrome, Safari etc.

 

Difference in Tags:

  • <!DOCTYPE html> : In HTML 4.01, there are three different <!DOCTYPE> declarations but In HTML 5 there is only one <! DOCTYPE html>
  • <a >: In HTML 4.01, the <a> tag could be either a hyperlink or an anchor. In HTML5, the <a> tag is always a hyperlink, but if it has no href attribute, it is only a placeholder for a hyperlink.
  • <acronym>: The <acronym> tag is not supported in HTML5. Use the <abbr> tag instead. The <acronym> tag was used to define acronyms in HTML 4.01.
  • <applet>: The <applet> tag is not supported in HTML5. Use the <object> tag instead.
  • <strong>: In HTML 4.01, the <strong> tag defines strong emphasized text, but in HTML5 it defines important text.
  • <body> : In HTML5, all <body> specific attributes are removed, while in HTML 4.01 they were deprecated.
  • <hr>: In HTML 4.01, the <hr> tag represented a horizontal rule. In HTML5, the <hr> tag defines a thematic break. The <hr> element is used to separate content (or define a change) in an HTML page.
  • <map> : In HTML5, if the id attribute of the <map> tag is also specified, it must have the same value as the name attribute.
  • <meta> : The scheme attribute is not supported in HTML5.

Conclusion:

HTML5 is being proved as one of the powerful tool for webpage design. With HTML5, streaming of audio and video without need of third party plug-in such as flash is possible. Player controls can be created that are fully programmable with JavaScript. In HTML5 we have new structural elements instead of traditional div tags to create page template, the final result will be a cleaner and more organized code. HTML5 allows storing data locally from client side. The data can be accessed to support the web application and it can even be accessed when the client is disconnected for a short period of time. There are methodologies for storing data: session storage, local storage and database storage. HTML5 introduces new elements and features that allow developers to improve interoperability, handling elements in a precise way saving time and costs.