I.What looks like the HTML5? ?
HTML is very simply language which based on tags.This is empty tag :
< >
We have two differents tags :
opening and closing tag
self-closing tags.
1.Framework of web page
But the most important, with this it is easy for you to find the site on search engine.
Memo :
More your code is clean more the search engine can valorize your web-site.
The frameword of web page had 4 principals tags :
tags which shows the doctype
The tags <html> in startd and en of the paper which informed the end of the code.
The tags <head> and </head> have the information for the browser but they are not view on the site.
Teh tags <body> and </body> where you have all the contents of your site.
2.Paragraph
The paragraph must be on open tag "< " indicate the start and his close tag ">" which symbolize his end.
<p>Put here your paragraphe </p>
This is your first tag.
Becareful, the second tags has backslash before the p which show the end of the tag.
3.The commentary
Commentary, it is between the signs <!- et ->. We can not see them on the search engine and the visitors can not too.
They help you to locating and others people can understand your code more easily.
So even they seem to be useless if you used them you don't regret when you read the site.
1,
2,
3,
4,
5,
6,
7