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):
<title>Example title</title>
Practical example
In this example, we use <title></title>
element to set the web page's title.
<!doctype html>
<html>
<head>
<title>Example title</title>
</head>
<body>
Web page body here ...
</body>
</html>
Result: