HTML - Meta tag

When building your website with HTML it is important that it is indexed well, and that the search engines can work well and read the important things first.

To do this we need to work with <meta> tags.

Meta elements are tags used in HTML and XHTML documents to provide structured metadata about a Web page. They are part of a web page's head section. Multiple Meta elements with different attributes can be used on the same page. Meta elements can be used to specify page description, keywords and any other metadata not provided through the other head elements and attributes.
-- Wikiepedia - Meta element

<!DOCTYPE html>
<html>
   <head>
     <title>Name website - title</title>
     <meta name = "keywords" content = "HTML, Meta Tags, Metadata" />
   </head>
 <body>
   <p>Hello HTML5! web site text</p>
 </body>
</html>

Having good meta tags helps your job with your website SEO and ranking in the web world.

Link to Google description.

Mattia