Let's talk about first HTML..??
If you are passionate towards becoming a UI DEVELOPER/ FRONT-END ENGINEER, then you need to know first about the technologies, which all are necessary for becoming a successful UI Developer.
HTML is one of them.
HTML is a language, which instruct the browser/ computer, how to display a webpage. It works only on the structure of the webpage.
HTML Structure:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
// Declaration of all necessory meta tags, which is relevant for the search engines.
// Declaration of title, linked favicon icon
// declaration of all necessory css files
</head>
<body>
// Defines structure of the webpage
// at the end of the body you can define all JS files and libraries.
</body>
</html>
HTML5 is just a advanced variant of HTML, which enables us to play more professionally with the Webpage Structure's by introducing some more interesting elements, and easiest understanding of the webpage by introducing some Semantic Elements also.
<!DOCTYPE html>
<html>
<head>
// Declaration of all necessory meta tags, which is relevant for the search engines.
// Declaration of title, linked favicon icon
// declaration of all necessory css files
</head>
<body>
// Defines structure of the webpage
// at the end of the body you can define all JS files and libraries.
</body>
</html>
So, If we talk about differentiate both technologies, you can easily do.
You can take brief introduction about these technologies from:
http://www.w3schools.com/html/
http://www.w3schools.com/html/html5_intro.asp
http://www.tutorialspoint.com/html/
https://www.tutorialspoint.com/html5/
If you are passionate towards becoming a UI DEVELOPER/ FRONT-END ENGINEER, then you need to know first about the technologies, which all are necessary for becoming a successful UI Developer.
HTML is one of them.
HTML is a language, which instruct the browser/ computer, how to display a webpage. It works only on the structure of the webpage.
HTML Structure:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
// Declaration of all necessory meta tags, which is relevant for the search engines.
// Declaration of title, linked favicon icon
// declaration of all necessory css files
</head>
<body>
// Defines structure of the webpage
// at the end of the body you can define all JS files and libraries.
</body>
</html>
HTML5 is just a advanced variant of HTML, which enables us to play more professionally with the Webpage Structure's by introducing some more interesting elements, and easiest understanding of the webpage by introducing some Semantic Elements also.
New Elements: Semantic Elements, Audio, Video, Iframe, Easiest Doctype Syntax, SVG, Canvas and Web Storage methods, Some new Input Attributes.
<!DOCTYPE html>
<html>
<head>
// Declaration of all necessory meta tags, which is relevant for the search engines.
// Declaration of title, linked favicon icon
// declaration of all necessory css files
</head>
<body>
// Defines structure of the webpage
// at the end of the body you can define all JS files and libraries.
</body>
</html>
So, If we talk about differentiate both technologies, you can easily do.
You can take brief introduction about these technologies from:
http://www.w3schools.com/html/
http://www.w3schools.com/html/html5_intro.asp
http://www.tutorialspoint.com/html/
https://www.tutorialspoint.com/html5/
No comments:
Post a Comment