Search code examples
htmlmeta-tagsmeta

what things I should have in header section of HTML website


I am learning how to create HTML website. I want to know what things (like meta, link, script etc) I should include in head section of the website ?

Please tell me all possible things which I should include with their descriptions.


Solution

  • While we create a HTML page, we need to include the following in head section:

    Link: Its a cascading style sheet which we use to create our page as per our design requirement.

    JavaScript: It contains the javascript code for our functionality to perform client side operations.

    Meta tags: Various the meta tags we have to include like "charset,viewport,description,keywords,Author,ROBOTS,googlebot,YahooSeeker,msnbot,reply-to etc.." along with canonical reference, go through the below link to understand all useful Meta tags that we have to use in our HTML page.

    https://gist.github.com/kevinSuttle/1997924

    Basic Meta Tags used for Search Engine Optimization.