EN
HTML - set web page title
5 points
In this article, we would like to show you how to set web page title using HTML.
Quick solution (put it to <head>
element):
xxxxxxxxxx
1
<title>Example title</title>
In this example, we use <title></title>
element to set the web page's title.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<title>Example title</title>
5
</head>
6
<body>
7
Web page body here ...
8
</body>
9
</html>
Result:
