HTML<link>
Element
<link>
Tags define the relationship between documents and external resources.
<link>
Tags are most commonly used to connect a style sheet:
HTML<meta>
Element
Metadata (metadata) is information about data.
<meta>
Tags provide metadata about HTML documents. Metadata is not displayed on the page, but is readable to machines.
In typical cases, meta elements are used to specify the page description, keywords, Document Author, last modification time, and other metadata.
<meta>
The label is always in the head element.
Metadata can be used in browsers (how to display content or reload pages), search engines (keywords), or other web Services.
Keywords for search engines
Some search engines use the name and content attributes of the meta element to index your page.
The following meta Element Definition page description:
<meta name="description" content="Free Web tutorials on HTML, CSS, XML" />
The following meta element defines the keywords of the page:
<meta name="keywords" content="HTML, CSS, XML" />
The name and content attributes describe the content of the page.
HTML<script>
Element
<script>
Tags are used to define client scripts, such as JavaScript.