Saturday, April 19, 2025

HTML Keywords, Description

Meta description, as other metas will go inside head section of web page. Meta description will be same, or similar to title. It is useful for search engines to describe web pages in SERP-s, Search Engine Result Pages. Also, social networks use it when you are sharing links to websites.

Meta keywords hold words that are also found in web page content, but don't overdo it to try to trick search engines, because they are smart these days. Long gone are time when you can trick search engines by putting as much words in meta keyword element. 

Keywords are delimited by comma.

There are many metas, and over time you will learn about them, but don't try to memorise them.

Meta elements are tags used in HTML/XHTML to provide metadata about web page. Please note, on left side of it we have command meta and than different attributes, as charset, description, keywords and so on, with specific value on right side.

There's no need to close meta tag.

If you have time, you can read more on dedicated Wiki page for Meta Element.

<!DOCTYPE html>

<html>
<head>
	<title>Security Tutorials</title>
	<meta charset="utf-8">
	<meta name="description" content="Free Security Tutorials">
	<meta name="keywords" content="it security, pentesting, hacking">
</head>

<body>

	<p>Actual Content</p>

</body>
</html>

No comments:

Post a Comment

Tkinter Introduction - Top Widget, Method, Button

First, let's make shure that our tkinter module is working ok with simple  for loop that will spawn 5 instances of blank Tk window .  ...