Introduction of html 5

Introduction
Html is stand for (hyper text markup language)
Html is used for design web structure in website. This is very easy language. Html
Construct web pages of websites.
Their syntax and tags is not very complicated.
It is easy to understand

Now below we gave the basic structure to write html Code.
 •Html start with use of <! doctype html>
This tag define version of html to browser.
Next tag is <html> the whole code is written
In under <html> tag.
<html> tag consist all the tags. After complete of code this tag will close with
</html> 
•After used of <html> tag now you can start to write the code. Next tag is <head> tag this tag is use for define the page of your website in <head> tag . After it their is title  tag<title> under title tag you will define the title of your page. It close with </title> tag
 Under <head> tag  You have to write the meta data about your webpage like description, viewport etc.
It close with </head>
•Next tag is body tag<body> body tag contain all of your code written in under <body> tag
•You will write the code in body tag such as
Your paragraphs,headers,images,videos etc. All the code write  in body tag.
It close with </body>tag.
Now you will close all the all the tags.
This is the basic structure to write the code in html.
Introduction of html is finished.
_____________________________________________
Example:

<! doctype html>
<html>
<head>
<title>xyz</title>
</head>
<body>
<h1>This is heading 1</h1>
<p2>This is paragraph 2</p2>
</body>
</html>

Post a Comment

0 Comments