" tag pair. The syntax format is "
Home >Web Front-end >HTML Tutorial >How to change the name of a web page in html
In HTML, you can change the name of the web page by setting the content of the "
" tag pair. The syntax format is " Web page name (title) "; the title tag uses Used to define the title of an HTML document, that is, the title of the web page displayed in the browser toolbar and the title of the page displayed in search engine results.
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
htmlModify the name of the web page
In HTML, you can change the name of the web page by setting the content of the "
Let’s take a look at the specific implementation method through code examples:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> 文档内容...... </body> </html>
If the
After adding the following code:
<title>文档标题</title>
Rendering:
##Description:
< ;title> Element:
html video tutorial"
The above is the detailed content of How to change the name of a web page in html. For more information, please follow other related articles on the PHP Chinese website!