Compete HTML course easy to understand

HTML
With HTML you can create your own Web site.
This tutorial teaches you everything about HTML.
HTML is easy to learn - You will enjoy it.

First Tutorial

Intro of HTML

Html is a web based language which use to design the structure of website.Stand for of HTML is (Hyper text Market language) its a markup language some peoples called it programming language but make sure any programming language have the strategy of Calculate any work and any of Programming language can variation on data so never call HTML as a programming language.
So start class of HTML for design a best website.we will learn latest version of HTML which is called by HTML5.this tutorial powered by w3c school but coders can't comment to ask any question or share any doubt that's why we have posted this here.

What is New in HTML5?

The DOCTYPE declaration for HTML5 is very simple:
<!DOCTYPE html>
The character encoding (charset) declaration is also very simple:
<meta charset="UTF-8">

HTML5 Example:

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

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

</html>


NoteThe default character encoding in HTML5 is UTF-8.

New HTML5 API's (Application Programming Interfaces)

The most interesting new API's are:
  • HTML Geolocation
  • HTML Drag and Drop
  • HTML Local Storage
  • HTML Application Cache
  • HTML Web Workers
  • HTML SSE
NoteLocal storage is a powerful replacement for cookies.

Elements Removed in HTML5

The following HTML4 elements have been removed from HTML5:
ElementUse instead
<acronym><abbr>
<applet><object>
<basefont>CSS
<big>CSS
<center>CSS
<dir><ul>
<font>CSS
<frame>
<frameset>
<noframes>
<strike>CSS
<tt>CSS
NoteIn the chapter HTML5 Migration, you will learn how to easily migrate from HTML4 to HTML5. 

HTML History

Since the early days of the web, there have been many versions of HTML:
VersionYear
Tim Berners-Lee invented www1989
Tim Berners-Lee invented HTML1991
Dave Raggett drafted HTML+1993
HTML Working Group defined HTML 2.01995
W3C Recommended HTML 3.21997
W3C Recommended HTML 4.011999
W3C Recommended XHTML 1.02000
HTML5 WHATWG First Public Draft2008
HTML5 WHATWG Living Standard2012
HTML5 W3C Final Recommendation2014




Share on Google Plus

0 comments:

Post a Comment