HTML Meta Tags
Meta tags are tags within HTML code placed within the <head></head> section of your HTML code that help define the contents of a web page. For example, a description meta tag is used by Internet search engines to display a description about your page in search engine results. Below is a listing of the different types of meta tags that could be used and a description about each meta tag. Today, it is not as important to include all these meta tags in your web page. The most important meta tags any web developer should be concerned with is the Content-Type meta tag and Description meta tag. Content-Type meta tag <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> Identify the content type and charset of the web page being displayed and how to display it. Although this line can be specified in a meta tag, if you have access to the .htacess file define the charset in that file instead, so it does...