Friday 17 March 2017

HTML5(HYPERTEXT MARKUP LANGUAGE 5)

HTML 5:
             HTML 5 constitutes the latest version of HTML. It is a markup language using which we can create a web page in an easy and convenient way. Now adding Audio and Video clips in the web page is as easy as including images, which was not possible in the earlier versions without the support of external software or plug-ins like flash player. With the CANVAS feature, you can draw image directly in the web page. all these attributes of this new version have added relevance and credibility to it.
Software to design HTML5 Document:
There are two basic tools we used for designing web pages.
1.HTML Editor:-Used for creating HTML web pages and Saving HTML web pages.
For example:-Text Editor(word pad, notepad), Adobe Dream weaver, Google Designer, etc.
2.Browsers:-Used for Viewing the HTML web Pages.
For Example:-Google Chrome, Internet Explorer, Mozilla FireFox, Opera, Apple Safari, etc

HTML5 introduces a number of new elements such as AUDIO, VIDEO and Canvas. it includes new JavaScript API's that allow you to perform various tasks such as drawing graphic on a web pages, storing data offline, and dragging and dropping content.
For Example:-

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>

<body>
Content of the document......
</body>
</html>


2 comments: