Skip to main content

WHAT IS HTML5?



HTML5 is made up of family of technologies. It consists of HTML markup itself, which has been expanded to include some new elements; there are also lots of additions to CSS with CSS3 that give you even more power to style your pages. And also consists of Javascript and a whole new set of JavaScript APIs that are available to you.

  • HTML5 is all about multimedia.
  • It’s all about more descriptive markup.
  • It’s about rich Internet clients. Instead of building clients with plug-ins like Flash.
  • HTML5 is the client-side storage and caching functionality.
  • Its all about web workers to make the page more responsive.
  • Its all about advanced selectors, animations.
  • Its all about the location track.
  • And finally we can say that HTML5 is the family of all these technologies.

HTML5 Supported Features


  • Video
  • Audio
  • 2D and 3D Graphics
  • Offline Caching
  • Enhanced Forms
  • Web Sockets
  • Geo Location
  • Drag & Drop
  • Web Workers
  • Local Storage

Supporters for the Family

  • HTML: It provides the structure to HTML page.
  • JavaScript : It provides action to HTML page.
  • CSS3: It provides design to html page.

Background


Many of us have seen so many Real Time applications where one among them is Video Chat. Achievement of Real Time communication has become very simple with the help of our buddy "HTML5". HTML5 supports Real Time communication through Web RTC(Web Real Time Communication.) In this article I would like to introduce to the features supported by HTML5(Web RTC) and also the steps required to achieve the video chat functionality. As I explained, HTML5 is family of technologies and I will be using some of its family members like Web Sockets, HTML5 video tags, and the Web RTC supported Javacript APIs to achieve Video Chat.

Comments

Popular posts from this blog

Wo-commerce sidebar navigation

There is Plus Minus Image you can change it in your own code

How to add attribute in input type onload

Add this script this will target your input type submit and set an attribute on it when page load. <script> function functionAddAttribute(){     $("input:submit").attr("accesskey","g"); }; window.onload = functionAddAttribute; </script> <noscript>Your browser does not support JavaScript!</noscript> This is html <input type="submit" value="this is button" />

HOW TO IMPLEMENT ADAPTIVE IMAGE IN WORDPRESS

If you don't know about Adaptive image please Read my last artical. STEP:1 COPY .htaccess , Adaptive-image.php, ai-cookie.php, DS_Store file in your root directory STEP 2: CREATE folder in wp-contant/uploads/adaptive/ai-cache if .htaccess file already exist then pest this code in it but be carefull take its backup CODE #START Adaptive-Images #Add any directories you wish to omit from the Adaptive-Images process on a new line. #Omit plugins, wp-includes and wp-admin content. RewriteCond %{REQUEST_URI} !wp-content/plugins RewriteCond %{REQUEST_URI} !wp-includes RewriteCond %{REQUEST_URI} !wp-admin #Send any GIF, JPG, or PNG request that IS NOT stored inside one of the above directories #to adaptive-images.php so we can select appropriately sized versions RewriteRule .(?:jpe?g|gif|png)$ adaptive-images.php #END Adaptive-Images UNDER # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On STEP3: Open Adaptive-image.php change with it $cache_path    = "wp-content/upl...