HTML – Meta tags
The meta tag is used to generate additional info to the search engine. These information will not be seen, unless the user will select view ‘Source’ from the ‘View’ menu where he will have access to the HTML part of the page.
Meta keywords
In the meta tag you can add keywords for the page. Here will be put the most important words and group of words that can target your web site. It is recommended that you do not abuse these tags, because using keywords that have no link to the web site’s content, neither the search engines nor the users will gain any profit.
Here is a moderate example of using the meta tag
HTML Code:
<head>
<meta name="keywords" content="web site, html tutorials, usege of html metatags" />
</head>
This example is based on this page’s profile.
As you can see, the name specifies what kind of meta tag will be used. Also, the comma that is used to separate the words from each other has to be specified. This is quite trivial but something that many forget that they have to do it.
Meta description
This tag helps you to describe your web site. A maximum of two sentences will be used to complete the content of this tag.
HTML Code:
<head>
<meta name="description" content="A web site resource for those willing to learn HTML and webmasters" />
</head>
As you can see, the name specifies what kind of meta tag will be used. Google recommends around 200-250 characters to be used for this tag. This is one of the most important tag in SEO.
Revised tag in meta
It is used to specify the latest update of the web site.
HTML Code:
<head>
<meta name="revised" content="1/08/2008" />
</head>
Refresh and redirect in meta
Refreshing is done with the help of the http-equiv=”refresh” attribute. The purpose of this tag is to reload the page and to display new info in the of an update. A very useful application for a forum, for example.
HTML Code:
<head>
<meta http-equiv="refresh" content="10; url=http://www.setscholars.net" />
</head>
Redirects are easily done by changing the address of the web page with the one you want it redirected to. The application is handy when you buy a new domain and the redirection of the users to the new page is desired. You can use this site that automatically generates a redirect for you.
HTML Code:
<head>
<meta http-equiv="refresh" content="5; url=http://www.setscholars.net" />
</head>
Python Example for Beginners
Two Machine Learning Fields
There are two sides to machine learning:
- Practical Machine Learning:This is about querying databases, cleaning data, writing scripts to transform data and gluing algorithm and libraries together and writing custom code to squeeze reliable answers from data to satisfy difficult and ill defined questions. It’s the mess of reality.
- Theoretical Machine Learning: This is about math and abstraction and idealized scenarios and limits and beauty and informing what is possible. It is a whole lot neater and cleaner and removed from the mess of reality.
Data Science Resources: Data Science Recipes and Applied Machine Learning Recipes
Introduction to Applied Machine Learning & Data Science for Beginners, Business Analysts, Students, Researchers and Freelancers with Python & R Codes @ Western Australian Center for Applied Machine Learning & Data Science (WACAMLDS) !!!
Latest end-to-end Learn by Coding Recipes in Project-Based Learning:
Applied Statistics with R for Beginners and Business Professionals
Data Science and Machine Learning Projects in Python: Tabular Data Analytics
Data Science and Machine Learning Projects in R: Tabular Data Analytics
Python Machine Learning & Data Science Recipes: Learn by Coding
R Machine Learning & Data Science Recipes: Learn by Coding
Comparing Different Machine Learning Algorithms in Python for Classification (FREE)
Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.