[HTML5] title tag-Write a title

You can use the title tag to describe the title.

<title> Introduction to HTML / CSS </title>

The title tag is described in the head tag.

<html>
  <head>
    <title> Introduction to HTML / CSS </title>
  </head>
  <body>
    ...
  </body>
</html>

The title is displayed as the title of the page when viewed in a browser.

Since it is displayed as a site link of search engines such as google, it is the most important as an SEO measure.

If you compare the importance of the title tag, description tag, and keyword tag numerically, think of it as "9: 1: 0".

That's how important the title is. Put your soul and heart into just one line of titles up to 32 characters.

How to add the site title to the end of the page title?

I want to add the title of the site to the end of each page.

In such cases, instead of writing HTML solidly, use HTML static construction tools, programming languages ​​and web frameworks.

  1. HTML static construction tool
  2. Programming languages ​​and web frameworks

The Perl seminar provides a tool called Giblog as a static HTML construction tool.

It also shows how to use Perl and Mojolicious as a way to use programming languages ​​and web frameworks.

Associated Information