Between <head> </head> tags we define general information about our WEB site, include some files into document.
To define our WEB site title, we use <title> tag.
<title>…</title>
To define description of your WEB site;
<meta name="description" content="This is my WEB site description">
To define keywords;
<meta name="keywords" content="keywords, are, here">
To define document encoding which is required to be able to use specific characters in our document;
<meta http-equiv="Content-Type" content="text/HTML; charset=utf-8" />
To prevent caching;
<meta HTTP-EQUIV="cache-control" CONTENT="no-cache">
To be able to use small favicon near our WEB page(there must be a favicon.ico file);
<link rel="SHORTCUT ICON" href="favicon.ico">
To be able to include CSS file;
<link href="CSS/myCSS.CSS" rel="stylesheet" type="text/CSS" />
To be able to include JavaScript file;
<script type="text/JavaScript" src="js/myJavaScripts.js"></script>










