Can anybody give me the layout of a HTML 5 program ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can anybody give me the layout of a HTML 5 program ?

I need to know the places where and why shall I use metadata,navigator , article things !

14th Jan 2018, 4:32 PM
Omesh Koul
1 Answer
+ 2
The HTML5 layout goes as follows: <!DOCTYPE html> <html> <head> ... title, metadata, (background info) etc would go here ... </head> <body> ... nav bars, div, and the overall body of the HTML goes here ... </body> </html> Metadata is used by search engines to optimize your webpages result on a search engines results. Metadata can be keywords, descriptions, etc.
15th Jan 2018, 1:46 AM
Dread
Dread - avatar