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>
The 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
Local storage is a powerful replacement for cookies. |
Elements Removed in HTML5
The following HTML4 elements have been removed from HTML5:
Element | Use instead |
---|---|
<acronym> | <abbr> |
<applet> | <object> |
<basefont> | CSS |
<big> | CSS |
<center> | CSS |
<dir> | <ul> |
<font> | CSS |
<frame> | |
<frameset> | |
<noframes> | |
<strike> | CSS |
<tt> | CSS |
In 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:
Version | Year |
---|---|
Tim Berners-Lee invented www | 1989 |
Tim Berners-Lee invented HTML | 1991 |
Dave Raggett drafted HTML+ | 1993 |
HTML Working Group defined HTML 2.0 | 1995 |
W3C Recommended HTML 3.2 | 1997 |
W3C Recommended HTML 4.01 | 1999 |
W3C Recommended XHTML 1.0 | 2000 |
HTML5 WHATWG First Public Draft | 2008 |
HTML5 WHATWG Living Standard | 2012 |
HTML5 W3C Final Recommendation | 2014 |
0 comments:
Post a Comment