SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 551
HTML5 in Web Development: A New Approach
Ashis Kumar Ratha1, Shibani Sahu2, Priya Meher3
1Asst.Prof, Department of Computer Science & Engg., VIT, Bargarh, Odisha ,INDIA
2,3 Student Researcher, Department of Computer Science & Engg., VIT, Bargarh Odisha ,INDIA
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - HTML5 is everywhere these days. HTML5 is the
new and elegant standard for HTML that provides webusers
and developers enhanced functionality. The older versionsof
HTML, HTML 4.01, which came in 1999, and the web
development have changed notably since then. HTML 4,
XHTML, CSS and the HTML DOM Level 2 are now replaced
with HTML5. It was brought to deliver rich content without
the need for additional plug-ins and proprietary
technologies. The new power of HTML5 supplies the user
everything from animation to graphics, music tomovies,and
can also be used to build complicated web applications and
also supports cross-platform. HTML5 standard initiates the
development of real-time collaborations in web browsers,
which leads to less work for web developers.
Key Words: Web, users, HTML, HTML5 features,
accessibility
INTRODUCTION
Web is the fastest growing resource that is rapidly and
constantly used across almost every platforms. To provide
more functionality than the web standards, manysoftware
vendors created their own proprietary technique. For e.g.
Adobe System Flesh, Microsoft silver light, Oracle JAVAFX,
Google Gears, Apple’sQuick Time etc. web applicationsrun
under these proprietary format.
For handling all the jobs that are currently being
performed by the proprietary technique W3C is creating a
standard on it’slatest research on HTML.HTML5iscreated
by the W3C with Web Hypertext Application Technology
Working Group (WHATWG)asa standardthatisfacilitating
the developers and the userswithout the need of toomuch
additional plug-ins having intensified functionality to
increase the platform independence and web openness.
HTML5
As HTML5 is the newer version of HTML, it helps us
creating interactive and rich webpages. HTML has grown
drastically from simply emphasizing on production of
audio, video and animations to providing offline
functionality, local storage and geo location on any client
side database.
The development of HTML5 gives rise to a wide variety of
multimedia applications. Without any help of proprietary
techniques from the browser it support animations and
can play audio and video. For web developer and web
designer the new features provided by the HTML5 would
add up new values.
(Figure-1)
HTML5 provides cross platform, which is designed to
display webpageson Smart TV, Tablet, PC,Smartphoneetc.
So many websites as well as browser designers are
adopting HTML5 elements. The main temptation for the
web developers and browsers is that someone can create
rich web pages, web based applications and enhanced
formswithout mastering orlicensing multiple proprietary
techniques.
HTML FEATURES
The new features provided by HTML5 includes
 Audio & Video
 Working Offline
 Drag & Drop
 New Elements
 Canvas-2D/3D Graphics
 Location Based Services
 Web Workers
 New Input Types
 Form Elements
CANVAS
To combine video and animations on webpages HTML5
uses <canvas> element for drawing graphics using java
script. To present 2D/3D graphics script is used and
graphics is contained in the canvas. To make graphics-
heavy pages render fast, various types of methods for
boxes, texts, drawing paths, images.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 552
Figure 2
SVG(Scalar Vector Graphics)
Vector based graphics is defined by the SVG. Even after the
compression and enlargement of image the quality of the
image will not be lost. The imagesof SVG can be scalable as
well as searched, scripted, indexed and compressed.
Figure-3. SVG image before zoom
Figure-4 SVG image after zoom
AUDIO & VIDEO
HTML5 provides standards for multimedia files on
webpage, where requirement of plug-in for different
multimedia filesexist. Now nonproprietaryformatsarefed
by the HTML5 in the webpage, which gives a classic way
for embedding multimedia files.
The related information is to be controlled as an HTML5
well matched streams and the browser is notified by the
<audio>,<source>and<video>tags. These enable users to
access the multimedia files without any help of certain
players.
<audio controls>
<source src=”guitar.mp3”
type=”audio/mpeg”>
Audio element is not supported by the browser.
</audio>
Figure 5. Output Audio Tag
<video width=”480” height=”480”controls>
<source src=”afterglow.mp4”
type=”video/mp4”>
</video>
A brand new procedures for permitting a website or web
application which works without network connection are
proposed by HTML5.By using cache interface for offline
browsing , reducing server load , more speed are great
advantages of HTML5.The web applications can be acted
as desktop application by Application Cache (AppCache)
Figure-6 Output Of Video Tag
LOCATION-BASED SERVICES
User’s locations are allotted by the Geo Location
Application programming Interface (API). The portable
device’sgeographic location is made obtainable totheweb
application. By providing assessment with GPS and JS
extensions it helps mobile browsers and Location-based
applications. The location of user browsing any website
can be identified by the HTML5’s API, if the user allows to
do so.
WORKING OFFLINE
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 553
which allows applications for storing data and
programming code.
WEB STORAGE
Data within user’s browser can be stored by a new feature
called Web Storage which is provided by HTML5 and it is
better than older version of cookies . Client-side SQL
database and offline application are supported by this
HTML5. Web Storage is more safe and rapid. Without
influencing the website’sperformance high sizeofdatacan
be stored. Stored data can be accessed through webpage
and it sores in pairs of value/name.
NEW INPUT TYPES
A new input types for unraveling the web page designing
with inbuilt support for CSS and JS is established by
HTML5 which favors superior input control and
validations. The new input types established are given
below through their HTML syntax.
Table 1. New Input Types of HTML5
Input
Types
Descriptions Syntax
color To show the color
pallets
<input type=”color”
Name=”nwcolor”>
date To show the date
picker
<input type=”date”
name=”dob”>
email To validate email
address
<input type=”email”
Name=”Email”>
number To accept only
numbers
<input type=”number”
name=”hrs” min=”1”
max=”12”>
range To display a slider
control for
selecting a number
<input type=”range”
name=”grade” min=”1”
max=”10”>
tel To validate
mobile/phone
number
<input type=”tel”
Name=”usrtel”>
time To display time
picker
<input type=”time”
name=”usr_time”>
Specific Elements are outdated and unused in HTML 4.01.
So HTML5 removes these elements and re-writes again.
The condemned elements in HTML5 are as below:
 <big>
 <center>
 <font>
 <isindex>
 <frame>
 <applet>
 <acronym>
 <basefont>
 <noframes>
 <frameset>
 <tt>
 <u>
 <s>
 <strike>
 <dir>
New elements for drawing graphics, specific new APIs for
drag and drop, for searching your geological location,
showing media content and for better page structure and
better form handling and much more things are
established by HTML5 for stronger requirements.
HTML5 provides new elements which are given below.
Table 2. New Elements in HTML5
Tag Description
<canvas> Defines graphic drawing using JavaScript
<audio> To play audio formats like MP3,Ogg and
Wav
<video> To play with video formats like
MP4,WebM and Ogg
<source> Sub tag for both audio and video to
specify the source file
<track> Sub tag for both audio and video to
specify text track ,for example subtitles.
<embed> Defines container for external
applications (like plug-ins, flash etc.)
The features which are indicated before established
feasibility for users and developers in developing web
applications without any help of plug-ins.
More validation scripts to be written with the help of
scripting language are normally required by HTML.
HTML5 is the optimal way to use for minimizing the code
size.
CONCLUSIONS
Latest elements and features are established by HTML5
which permit developers to enhance interoperability,
conducting elements in an exact way to save time and
costs. HTML5 is an amazing technology, which makes the
web even more supreme and substantial,HTML5hasmore
possibilitiesi.e. from desktop computersto mobile devices
and in domestic appliances.HTML5 has smoothened the
line desktop and online applications. Malware Writersthat
leadsto common hackswill be suffered by HTML5whichis
available after coming days.
REFERENCES
[1] HTML5 Web Application Development by
Example, J M Gustafson
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 554
[2] Murach’s HTML5 and CSS3 by Zak Ruvalcaba and
Anne Boehm
[3] W3Schools.com,HTML5Rocks.com
[4] Wenling Hu, Hao Yuan, Jiangong Wang, Liang Wang,
The Research and Application of Power System
Visualization Based on HTML, IEEE 2011.
[5] Chen Li-Li, Liu Zheng-Long, Design of Rich Client Web
Architecture Based o HTML5, ICCIS, 2012
BIOGRAPHIES
Mr.A.K.Ratha is working as an assistant
professor in department of CSE, Vikash
Institute of Technology ,Bargarh. Hehas
done MCA in 2007 from Sambalpur
University and M.Tech. in CSE with
Information Security specialization in
2012 from KIIT University,
Bhubaneswar. He has 10 years of
experience in teaching engineering. His
research area are Natural Language
Processing, Application Programming&
Machine Learning.
Ms. Shibani Sahu is perusing
B.tech(CSE) from Vikash Institute of
Technology, Bargarh and presently is in
Fourth Year. Her research interests are
Database management system and
Operating System.
Ms. Priya Meher is perusing B.tech(CSE)
from Vikash Institute of Technology,
Bargarh and presently is in Fourth Year.
Her research interests are Operating
System and Data Structure
2nd
Author
Photo

More Related Content

What's hot

HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...
HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...
HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...Idexcel Technologies
 
E2.0 User Forum
E2.0 User ForumE2.0 User Forum
E2.0 User Forum95wolf
 
Inthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePointInthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePointInthiyaz Pathan
 
Nwtl2017 extending and customizing ibm connections cloud
Nwtl2017 extending and customizing ibm connections cloudNwtl2017 extending and customizing ibm connections cloud
Nwtl2017 extending and customizing ibm connections cloudAndré Luís Cardoso
 
Enrique Duvos: Adobe RIA Platform
Enrique Duvos: Adobe RIA PlatformEnrique Duvos: Adobe RIA Platform
Enrique Duvos: Adobe RIA PlatformInitium
 
Updated SAKET MRINAL Resume
Updated SAKET MRINAL ResumeUpdated SAKET MRINAL Resume
Updated SAKET MRINAL ResumeSaket Mrinal
 
SadikulIslamDotNetResume
SadikulIslamDotNetResumeSadikulIslamDotNetResume
SadikulIslamDotNetResumeSadikul Islam
 

What's hot (9)

HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...
HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...
HTML5 Handling Security Issues, Security Threats for HTML5, HTML5 Application...
 
E internet além da web
E internet além da webE internet além da web
E internet além da web
 
E2.0 User Forum
E2.0 User ForumE2.0 User Forum
E2.0 User Forum
 
Inthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePointInthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePoint
 
Nwtl2017 extending and customizing ibm connections cloud
Nwtl2017 extending and customizing ibm connections cloudNwtl2017 extending and customizing ibm connections cloud
Nwtl2017 extending and customizing ibm connections cloud
 
Enrique Duvos: Adobe RIA Platform
Enrique Duvos: Adobe RIA PlatformEnrique Duvos: Adobe RIA Platform
Enrique Duvos: Adobe RIA Platform
 
Darron_Haworth_2016
Darron_Haworth_2016Darron_Haworth_2016
Darron_Haworth_2016
 
Updated SAKET MRINAL Resume
Updated SAKET MRINAL ResumeUpdated SAKET MRINAL Resume
Updated SAKET MRINAL Resume
 
SadikulIslamDotNetResume
SadikulIslamDotNetResumeSadikulIslamDotNetResume
SadikulIslamDotNetResume
 

Similar to IRJET- HTML5 in Web Development: A New Approach

Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginnersSingsys Pte Ltd
 
HTML5-Tutorial-For-Beginn.6202488.pptx
HTML5-Tutorial-For-Beginn.6202488.pptxHTML5-Tutorial-For-Beginn.6202488.pptx
HTML5-Tutorial-For-Beginn.6202488.pptxBCAGen
 
IRJET- Implementation of Web Enabled Notice Board using SOC
IRJET- Implementation of Web Enabled Notice Board using SOCIRJET- Implementation of Web Enabled Notice Board using SOC
IRJET- Implementation of Web Enabled Notice Board using SOCIRJET Journal
 
HTML5 introduction for beginners
HTML5 introduction for beginnersHTML5 introduction for beginners
HTML5 introduction for beginnersVineeth N Krishnan
 
Everything That You Need To Know About HTML5
Everything That You Need To Know About HTML5Everything That You Need To Know About HTML5
Everything That You Need To Know About HTML5KaneJordy1
 
Cgs html 5-service
Cgs html 5-serviceCgs html 5-service
Cgs html 5-serviceConstient
 
Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7Mediacurrent
 
IRJET- Creating Website as a Service using Web Components
IRJET-  	  Creating Website as a Service using Web ComponentsIRJET-  	  Creating Website as a Service using Web Components
IRJET- Creating Website as a Service using Web ComponentsIRJET Journal
 
HTML5 and CSS3 refresher
HTML5 and CSS3 refresherHTML5 and CSS3 refresher
HTML5 and CSS3 refresherIvano Malavolta
 
Html5 workshop part 1
Html5 workshop part 1Html5 workshop part 1
Html5 workshop part 1NAILBITER
 
Thadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-WorkshopThadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-WorkshopRomin Irani
 
HTML5 Presentation
HTML5 PresentationHTML5 Presentation
HTML5 Presentationvs4vijay
 

Similar to IRJET- HTML5 in Web Development: A New Approach (20)

Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
 
HTML5-Tutorial-For-Beginn.6202488.pptx
HTML5-Tutorial-For-Beginn.6202488.pptxHTML5-Tutorial-For-Beginn.6202488.pptx
HTML5-Tutorial-For-Beginn.6202488.pptx
 
IRJET- Implementation of Web Enabled Notice Board using SOC
IRJET- Implementation of Web Enabled Notice Board using SOCIRJET- Implementation of Web Enabled Notice Board using SOC
IRJET- Implementation of Web Enabled Notice Board using SOC
 
HTML5 introduction for beginners
HTML5 introduction for beginnersHTML5 introduction for beginners
HTML5 introduction for beginners
 
Everything That You Need To Know About HTML5
Everything That You Need To Know About HTML5Everything That You Need To Know About HTML5
Everything That You Need To Know About HTML5
 
HTML 5 - A developers perspective
HTML 5 - A developers perspectiveHTML 5 - A developers perspective
HTML 5 - A developers perspective
 
Cgs html 5-service
Cgs html 5-serviceCgs html 5-service
Cgs html 5-service
 
Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7
 
Html5 Future of WEB
Html5 Future of WEBHtml5 Future of WEB
Html5 Future of WEB
 
IRJET- Creating Website as a Service using Web Components
IRJET-  	  Creating Website as a Service using Web ComponentsIRJET-  	  Creating Website as a Service using Web Components
IRJET- Creating Website as a Service using Web Components
 
HTML5 and CSS3 refresher
HTML5 and CSS3 refresherHTML5 and CSS3 refresher
HTML5 and CSS3 refresher
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
 
Html5 workshop part 1
Html5 workshop part 1Html5 workshop part 1
Html5 workshop part 1
 
HTML5 Refresher
HTML5 RefresherHTML5 Refresher
HTML5 Refresher
 
Thadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-WorkshopThadomal IEEE-HTML5-Workshop
Thadomal IEEE-HTML5-Workshop
 
HTML5
HTML5HTML5
HTML5
 
Html5 guide
Html5 guideHtml5 guide
Html5 guide
 
Html5 Overview
Html5 OverviewHtml5 Overview
Html5 Overview
 
HTML5 Presentation
HTML5 PresentationHTML5 Presentation
HTML5 Presentation
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIkoyaldeepu123
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture designssuser87fa0c1
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 

Recently uploaded (20)

main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
EduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AIEduAI - E learning Platform integrated with AI
EduAI - E learning Platform integrated with AI
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
pipeline in computer architecture design
pipeline in computer architecture  designpipeline in computer architecture  design
pipeline in computer architecture design
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 

IRJET- HTML5 in Web Development: A New Approach

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 551 HTML5 in Web Development: A New Approach Ashis Kumar Ratha1, Shibani Sahu2, Priya Meher3 1Asst.Prof, Department of Computer Science & Engg., VIT, Bargarh, Odisha ,INDIA 2,3 Student Researcher, Department of Computer Science & Engg., VIT, Bargarh Odisha ,INDIA ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - HTML5 is everywhere these days. HTML5 is the new and elegant standard for HTML that provides webusers and developers enhanced functionality. The older versionsof HTML, HTML 4.01, which came in 1999, and the web development have changed notably since then. HTML 4, XHTML, CSS and the HTML DOM Level 2 are now replaced with HTML5. It was brought to deliver rich content without the need for additional plug-ins and proprietary technologies. The new power of HTML5 supplies the user everything from animation to graphics, music tomovies,and can also be used to build complicated web applications and also supports cross-platform. HTML5 standard initiates the development of real-time collaborations in web browsers, which leads to less work for web developers. Key Words: Web, users, HTML, HTML5 features, accessibility INTRODUCTION Web is the fastest growing resource that is rapidly and constantly used across almost every platforms. To provide more functionality than the web standards, manysoftware vendors created their own proprietary technique. For e.g. Adobe System Flesh, Microsoft silver light, Oracle JAVAFX, Google Gears, Apple’sQuick Time etc. web applicationsrun under these proprietary format. For handling all the jobs that are currently being performed by the proprietary technique W3C is creating a standard on it’slatest research on HTML.HTML5iscreated by the W3C with Web Hypertext Application Technology Working Group (WHATWG)asa standardthatisfacilitating the developers and the userswithout the need of toomuch additional plug-ins having intensified functionality to increase the platform independence and web openness. HTML5 As HTML5 is the newer version of HTML, it helps us creating interactive and rich webpages. HTML has grown drastically from simply emphasizing on production of audio, video and animations to providing offline functionality, local storage and geo location on any client side database. The development of HTML5 gives rise to a wide variety of multimedia applications. Without any help of proprietary techniques from the browser it support animations and can play audio and video. For web developer and web designer the new features provided by the HTML5 would add up new values. (Figure-1) HTML5 provides cross platform, which is designed to display webpageson Smart TV, Tablet, PC,Smartphoneetc. So many websites as well as browser designers are adopting HTML5 elements. The main temptation for the web developers and browsers is that someone can create rich web pages, web based applications and enhanced formswithout mastering orlicensing multiple proprietary techniques. HTML FEATURES The new features provided by HTML5 includes  Audio & Video  Working Offline  Drag & Drop  New Elements  Canvas-2D/3D Graphics  Location Based Services  Web Workers  New Input Types  Form Elements CANVAS To combine video and animations on webpages HTML5 uses <canvas> element for drawing graphics using java script. To present 2D/3D graphics script is used and graphics is contained in the canvas. To make graphics- heavy pages render fast, various types of methods for boxes, texts, drawing paths, images.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 552 Figure 2 SVG(Scalar Vector Graphics) Vector based graphics is defined by the SVG. Even after the compression and enlargement of image the quality of the image will not be lost. The imagesof SVG can be scalable as well as searched, scripted, indexed and compressed. Figure-3. SVG image before zoom Figure-4 SVG image after zoom AUDIO & VIDEO HTML5 provides standards for multimedia files on webpage, where requirement of plug-in for different multimedia filesexist. Now nonproprietaryformatsarefed by the HTML5 in the webpage, which gives a classic way for embedding multimedia files. The related information is to be controlled as an HTML5 well matched streams and the browser is notified by the <audio>,<source>and<video>tags. These enable users to access the multimedia files without any help of certain players. <audio controls> <source src=”guitar.mp3” type=”audio/mpeg”> Audio element is not supported by the browser. </audio> Figure 5. Output Audio Tag <video width=”480” height=”480”controls> <source src=”afterglow.mp4” type=”video/mp4”> </video> A brand new procedures for permitting a website or web application which works without network connection are proposed by HTML5.By using cache interface for offline browsing , reducing server load , more speed are great advantages of HTML5.The web applications can be acted as desktop application by Application Cache (AppCache) Figure-6 Output Of Video Tag LOCATION-BASED SERVICES User’s locations are allotted by the Geo Location Application programming Interface (API). The portable device’sgeographic location is made obtainable totheweb application. By providing assessment with GPS and JS extensions it helps mobile browsers and Location-based applications. The location of user browsing any website can be identified by the HTML5’s API, if the user allows to do so. WORKING OFFLINE
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 553 which allows applications for storing data and programming code. WEB STORAGE Data within user’s browser can be stored by a new feature called Web Storage which is provided by HTML5 and it is better than older version of cookies . Client-side SQL database and offline application are supported by this HTML5. Web Storage is more safe and rapid. Without influencing the website’sperformance high sizeofdatacan be stored. Stored data can be accessed through webpage and it sores in pairs of value/name. NEW INPUT TYPES A new input types for unraveling the web page designing with inbuilt support for CSS and JS is established by HTML5 which favors superior input control and validations. The new input types established are given below through their HTML syntax. Table 1. New Input Types of HTML5 Input Types Descriptions Syntax color To show the color pallets <input type=”color” Name=”nwcolor”> date To show the date picker <input type=”date” name=”dob”> email To validate email address <input type=”email” Name=”Email”> number To accept only numbers <input type=”number” name=”hrs” min=”1” max=”12”> range To display a slider control for selecting a number <input type=”range” name=”grade” min=”1” max=”10”> tel To validate mobile/phone number <input type=”tel” Name=”usrtel”> time To display time picker <input type=”time” name=”usr_time”> Specific Elements are outdated and unused in HTML 4.01. So HTML5 removes these elements and re-writes again. The condemned elements in HTML5 are as below:  <big>  <center>  <font>  <isindex>  <frame>  <applet>  <acronym>  <basefont>  <noframes>  <frameset>  <tt>  <u>  <s>  <strike>  <dir> New elements for drawing graphics, specific new APIs for drag and drop, for searching your geological location, showing media content and for better page structure and better form handling and much more things are established by HTML5 for stronger requirements. HTML5 provides new elements which are given below. Table 2. New Elements in HTML5 Tag Description <canvas> Defines graphic drawing using JavaScript <audio> To play audio formats like MP3,Ogg and Wav <video> To play with video formats like MP4,WebM and Ogg <source> Sub tag for both audio and video to specify the source file <track> Sub tag for both audio and video to specify text track ,for example subtitles. <embed> Defines container for external applications (like plug-ins, flash etc.) The features which are indicated before established feasibility for users and developers in developing web applications without any help of plug-ins. More validation scripts to be written with the help of scripting language are normally required by HTML. HTML5 is the optimal way to use for minimizing the code size. CONCLUSIONS Latest elements and features are established by HTML5 which permit developers to enhance interoperability, conducting elements in an exact way to save time and costs. HTML5 is an amazing technology, which makes the web even more supreme and substantial,HTML5hasmore possibilitiesi.e. from desktop computersto mobile devices and in domestic appliances.HTML5 has smoothened the line desktop and online applications. Malware Writersthat leadsto common hackswill be suffered by HTML5whichis available after coming days. REFERENCES [1] HTML5 Web Application Development by Example, J M Gustafson
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 03 | Mar-2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 6.171 | ISO 9001:2008 Certified Journal | Page 554 [2] Murach’s HTML5 and CSS3 by Zak Ruvalcaba and Anne Boehm [3] W3Schools.com,HTML5Rocks.com [4] Wenling Hu, Hao Yuan, Jiangong Wang, Liang Wang, The Research and Application of Power System Visualization Based on HTML, IEEE 2011. [5] Chen Li-Li, Liu Zheng-Long, Design of Rich Client Web Architecture Based o HTML5, ICCIS, 2012 BIOGRAPHIES Mr.A.K.Ratha is working as an assistant professor in department of CSE, Vikash Institute of Technology ,Bargarh. Hehas done MCA in 2007 from Sambalpur University and M.Tech. in CSE with Information Security specialization in 2012 from KIIT University, Bhubaneswar. He has 10 years of experience in teaching engineering. His research area are Natural Language Processing, Application Programming& Machine Learning. Ms. Shibani Sahu is perusing B.tech(CSE) from Vikash Institute of Technology, Bargarh and presently is in Fourth Year. Her research interests are Database management system and Operating System. Ms. Priya Meher is perusing B.tech(CSE) from Vikash Institute of Technology, Bargarh and presently is in Fourth Year. Her research interests are Operating System and Data Structure 2nd Author Photo