HTML

What does the HTML tag do?

I have just started learning HTML from W3Schools. I tried my first code and even if I change my title in my HTML code, it doesn’t make any difference. The resulting page remains the same.

     

HTML lesson 1

My name is John

Do you mean the

@Barmar oh ! I see that now the name on the tab changes when I change it , thanks alot please write that in the answer so i can accept it

5 Answers 5

Look on w3.org at http://www.w3.org/Provider/Style/TITLE.html
It is well explained. Quoting it: (bolding mine)

The title of a document is specified by the TITLE element. The TITLE element should occur in the HEAD of the document.

There may only be one title in any document. It should identify the content of the document in a fairly wide context.

The title is not part of the text of the document, but is a property of the whole document. It may not contain anchors, paragraph marks, or highlighting. The title may be used to identify the node in a history list, to label the window displaying the node, etc. It is not normally displayed in the text of a document itself. Contrast titles with headings . The title should ideally be less than 64 characters in length. That is, many applications will display document titles in window titles, menus, etc where there is only limited room. Whilst there is no limit on the length of a title (as it may be automatically generated from other data), information providers are warned that it may be truncated if long.

Читайте также:  Using property files in php

Источник

Title html do part

Определяет заголовок документа. Элемент не является частью документа и не показывается напрямую на веб-странице. В операционной системе Windows текст заголовка отображается в левом верхнем углу окна браузера (рис. 1). Допускается использовать только один тег на документ и размещать его в контейнере .

Рис. 1. Вид заголовка в браузере Internet Explorer

Рис. 1. Вид заголовка в браузере Firefox

Синтаксис

Закрывающий тег

Атрибуты

     

.

Примечание

Тег выполняет множество задач, как прямо, так и косвенно. Ниже описано какую роль выполняет заголовок страницы.

  • По тексту заголовка пользователь получает дополнительную информацию, что это за сайт, на котором он находится и как называется текущая страница. Не стоит думать, что достаточно в документе указать логотип сайта и проигнорировать заголовок, ведь посетитель может свернуть окно. В свернутом виде заголовок также отображается на кнопках панели задач, поэтому можно легко ориентироваться, с каким сайтом в данный момент работать, а не перелистывать их по очереди.
  • Большинство браузеров поддерживают возможность сохранения веб-страницы на локальный компьютер. В этом случае имя сохраненного файла совпадает с названием заголовка документа. Если в тексте заголовка содержатся символы недопустимые в имени файла (\ / : * ? » < >|), они будут проигнорированы или автоматически заменены другими дозволенными символами.
  • При сохранении в разделе браузера «Избранное», адрес текущей страницы с ее заголовком помещается в список предпочитаемых ссылок. Поскольку этот список, как правило, хранится в виде отдельных файлов, к их именам также прилагается уже вышеописанное правило.
  • В результатах поиска по ключевым словам, поисковые системы используют заголовок страницы для указания ссылки на данный документ. Интересно написанный заголовок, содержащий ключевые слова, привлечет больше внимания посетителей и увеличит шансы на то, что сайт посетит больше людей.

Статьи по теме

Источник

: The Document Title element

The HTML element defines the document’s title that is shown in a browser’s title bar or a page’s tab. It only contains text; tags within the element are ignored.

title>Grandma's Heavy Metal Festival Journaltitle> 
Content categories Metadata content.
Permitted content Text that is not inter-element whitespace.
Tag omission Both opening and closing tags are required. Note that leaving off should cause the browser to ignore the rest of the page.
Permitted parents A element that contains no other element.
Implicit ARIA role No corresponding role
Permitted ARIA roles No role permitted.
DOM interface HTMLTitleElement

Attributes

This element only includes the global attributes.

Usage notes

The element is always used within a page’s block.

Page titles and SEO

The contents of a page title can have significant implications for search engine optimization (SEO). In general, a longer, descriptive title performs better than short or generic titles. The content of the title is one of the components used by search engine algorithms to decide the order in which to list pages in search results. Also, the title is the initial «hook» by which you grab the attention of readers glancing at the search results page.

A few guidelines and tips for composing good titles:

  • Avoid one- or two-word titles. Use a descriptive phrase, or a term-definition pairing for glossary or reference-style pages.
  • Search engines typically display about the first 55–60 characters of a page title. Text beyond that may be lost, so try not to have titles longer than that. If you must use a longer title, make sure the important parts come earlier and that nothing critical is in the part of the title that is likely to be dropped.
  • Don’t use «keyword blobs.» If your title is just a list of words, algorithms often reduce your page’s position in the search results.
  • Try to make sure your titles are as unique as possible within your own site. Duplicate—or near-duplicate—titles can contribute to inaccurate search results.

Examples

title>Awesome interesting stufftitle> 

This example establishes a page whose title (as displayed at the top of the window or in the window’s tab) as «Awesome interesting stuff».

Accessibility concerns

It is important to provide an accurate and concise title to describe the page’s purpose.

A common navigation technique for users of assistive technology is to read the page title and infer the content the page contains. This is because navigating into a page to determine its content can be a time-consuming and potentially confusing process. Titles should be unique to every page of a website, ideally surfacing the primary purpose of the page first, followed by the name of the website. Following this pattern will help ensure that the primary purpose of the page is announced by a screen reader first. This provides a far better experience than having to listen to the name of a website before the unique page title, for every page a user navigates to in the same website.

Examples

title>Menu - Blue House Chinese Food - FoodYum: Online takeout today!title> 

If a form submission contains errors and the submission re-renders the current page, the title can be used to help make users aware of any errors with their submission. For instance, update the page title value to reflect significant page state changes (such as form validation problems).

title> 2 errors - Your order - Sea Food Store - Food: Online takeout today! title> 

Note: Presently, dynamically updating a page’s title will not be automatically announced by screen readers. If you are going to update the page title to reflect significant changes to a page’s state, then the use of ARIA Live Regions may be necessary, as well.

Specifications

Browser compatibility

BCD tables only load in the browser

See also

Found a content problem with this page?

This page was last modified on Apr 14, 2023 by MDN contributors.

Your blueprint for a better internet.

Источник

Оцените статью