Как изменить название сайта во вкладке html

👍 Помимо URL, каждая страница на сайте имеет имя, которое высвечивается в заголовке вкладки браузера, а когда эта вкладка активна - и в заголовке окна.

Как изменить название сайта на странице

Помимо URL, каждая страница на сайте имеет имя, которое высвечивается в заголовке вкладки браузера, а когда эта вкладка активна — и в заголовке окна. Помимо этого, при вставке ссылки на другую страницу можно сделать так, чтобы посетитель вашего сайта видел не ее URL, а произвольно заданную вебмастером строку.

Как изменить название сайта на странице

Инструкция

Если вы являетесь владельцем сайта и желаете изменить заголовок той или иной страницы, входящей в его состав, и при этом все страницы на нем являются статическими (система управления содержимым (CMS) отсутствует), откройте HTML-файл с этой страницей в текстовом редакторе. Правильно выберите кодировку файла, при необходимости используйте редактор, допускающий переключение кодировок, либо встроенный редактор хостинга, открывающийся прямо в браузере. Найдите в HTML-коде строку следующего вида:<title>Имя страницы, отображающееся в заголовке вкладки и окна</title>Замените строку на другую, поместите на сервер обновленный вариант HTML-файла, а затем перезагрузите страницу в браузере. Если ничего не изменилось, очистите кеш браузера, после чего снова перезагрузите страницу.

На сайтах, работающих под управлением системы управления содержимым (CMS), HTML-файлы генерируются автоматически всякий раз, когда их запрашивает посетитель. Заголовки всех страниц хранятся в базе данных. Найдите в базе соответствующую запись (как это сделать — зависит от того, какой CMS вы пользуетесь). Измените строку, введенную в поле для заголовка этой страницы, после чего сохраните ее. Если сайт работает на «движке» MediaWiki или подобном, войдите в свою учетную запись, после чего нажмите на странице на ссылку «Переименовать». Введите новое имя страницы и сохраните изменения.

В случае если вы желаете, чтобы ссылка на другую страницу, расположенная на вашем сайте, имела вид, отличающийся от URL этой страницы, используйте следующую HTML-конструкцию:<a href=http://server.domain/folder/another-folder/page.html>Это — ссылка на другую страницу!</a>При наведении на такую ссылку курсора мыши пользователь увидит в левом нижнем углу браузера URL, на который эта ссылка ведет. Если другая страница находится на том же сервере, вместо полного пути к ней можно ввести просто имя файла.

Для размещения ссылки со строкой, отличающейся от URL страницы, в форуме, поддерживающем теги с квадратными скобками, используйте другую конструкцию:[URL=http://server.domain/folder/another-folder/page.html]Это — ссылка на другую страницу![/URL]При включении такой ссылки в состав кода на языке разметки Wiki видоизмените эту конструкцию так:[http://server.domain/folder/another-folder/page.html Это — ссылка на другую страницу!]Если же страница, на которую вы ссылаетесь, входит в состав того же вики-проекта, сослаться на нее можно по-другому:[[Страницаномер4|Эта ссылка ведет на страницу номер 4]]Обратите внимание: в первых двух примерах в этом шаге квадратные скобки одинарные, а в третьем — двойные.

Видео по теме

Войти на сайт

или

Забыли пароль?
Еще не зарегистрированы?

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.


Download Article


Download Article

Every web page needs a title. Why doesn’t yours? One of the major tag pairs in HTML is the <title></title> tags; the title tag affects several functions of websites, from the default bookmark titles through to flashing words drawing your attention back to the site, even when in a different tab.

  1. 1

    Open a text editing program (or IDE) such as Atom, Brackets or even TextEdit or Notepad++.

  2. 2

    Create the <html> body. Using the <html> tags, create a .html file with either tags on a new line. Make sure to close the tag with </html>.

    Image titled Title tag html

  3. Advertisement

    3


  4. Add the <head> section. Placing the <head> tags in between the <html> tags, define the head (metadata section) section. Make sure to close the tag with </head>.

    Image titled Title tag head

  5. Add the <body> section. Below the closing </head> tag and above the closing </html> tag, add the <body> (content section) tags. Make sure to close the tag with </body>.

    Image titled Title tag content

    • Optionally, add some 'test' code in the body (or content) section to make sure that you've coded it correctly. If the content shows, it means that the code is parsing (loading). If not, it means that you may have made a typo, or some other thing that is not letting it load.

Adding the Title Tag


Download Article

  1. Add a <title> tag in the head (metadata) section.

    Image titled Title tag title content

    • Make sure to close the tag with </title>. These two tags can be on the same line. In between the starting and closing title tags, write what you want your title to say.

Testing the Code


Download Article

  1. Save your file to an easily accessible location. Name your file as something.html, replacing something with what you wish. Remember that the index.html file is the 'home' or 'landing' page of your website.

    Image titled Title tag save

  2. Open your page in your preferred browser. Browsers like Google Chrome, or Mozilla Firefox are good for front-end website development. Go ahead and open your .html file. You can use short keys like Cmd+O or Ctrl+O to open the file in most browsers.

    Image titled Title tag open

  3. Look at the top of the tab for your title. If your desired title shows, the code has loaded and worked! If not, and it shows your filename instead (something.html), you may have made a mistake; check your code for typos then try again.

    Image titled Title tag view

  4. Sit back and admire your work. You've just taken the first step to a fully functional website.

{{{1}}}

  • Learn HTML
  • Create a Simple Web Page with HTML
  • Write an HTML Page
  • Change Text Color in HTML
  • Use Font Color Tags in HTML

Add New Question

  • Question

    How do I insert the first level heading?

    Shehriar Ahmad Awan

    Shehriar Ahmad Awan

    Community Answer

    You can do it using the H1 tag.

Ask a Question

200 characters left

Include your email address to get a message when this question is answered.

Submit

Advertisement

Thanks for submitting a tip for review!

About This Article

Thanks to all authors for creating a page that has been read 55,157 times.

Is this article up to date?


Download Article


Download Article

Every web page needs a title. Why doesn’t yours? One of the major tag pairs in HTML is the <title></title> tags; the title tag affects several functions of websites, from the default bookmark titles through to flashing words drawing your attention back to the site, even when in a different tab.

  1. 1

    Open a text editing program (or IDE) such as Atom, Brackets or even TextEdit or Notepad++.

  2. 2

    Create the <html> body. Using the <html> tags, create a .html file with either tags on a new line. Make sure to close the tag with </html>.

    Image titled Title tag html

  3. Advertisement

    3


  4. Add the <head> section. Placing the <head> tags in between the <html> tags, define the head (metadata section) section. Make sure to close the tag with </head>.

    Image titled Title tag head

  5. Add the <body> section. Below the closing </head> tag and above the closing </html> tag, add the <body> (content section) tags. Make sure to close the tag with </body>.

    Image titled Title tag content

    • Optionally, add some 'test' code in the body (or content) section to make sure that you've coded it correctly. If the content shows, it means that the code is parsing (loading). If not, it means that you may have made a typo, or some other thing that is not letting it load.

Adding the Title Tag


Download Article

  1. Add a <title> tag in the head (metadata) section.

    Image titled Title tag title content

    • Make sure to close the tag with </title>. These two tags can be on the same line. In between the starting and closing title tags, write what you want your title to say.

Testing the Code


Download Article

  1. Save your file to an easily accessible location. Name your file as something.html, replacing something with what you wish. Remember that the index.html file is the 'home' or 'landing' page of your website.

    Image titled Title tag save

  2. Open your page in your preferred browser. Browsers like Google Chrome, or Mozilla Firefox are good for front-end website development. Go ahead and open your .html file. You can use short keys like Cmd+O or Ctrl+O to open the file in most browsers.

    Image titled Title tag open

  3. Look at the top of the tab for your title. If your desired title shows, the code has loaded and worked! If not, and it shows your filename instead (something.html), you may have made a mistake; check your code for typos then try again.

    Image titled Title tag view

  4. Sit back and admire your work. You've just taken the first step to a fully functional website.

{{{1}}}

  • Learn HTML
  • Create a Simple Web Page with HTML
  • Write an HTML Page
  • Change Text Color in HTML
  • Use Font Color Tags in HTML

Add New Question

  • Question

    How do I insert the first level heading?

    Shehriar Ahmad Awan

    Shehriar Ahmad Awan

    Community Answer

    You can do it using the H1 tag.

Ask a Question

200 characters left

Include your email address to get a message when this question is answered.

Submit

Advertisement

Thanks for submitting a tip for review!

About This Article

Thanks to all authors for creating a page that has been read 55,157 times.

Is this article up to date?

Понравилась статья? Поделить с друзьями:
  • Как изменить название сети wifi tp link
  • Как изменить название сайта wordpress
  • Как изменить название сетевого подключения
  • Как изменить название сайта wix
  • Как изменить название сервера самп через павно