HTML <title>
query_builder | Christopher PisaniThe HTML element <title> is required in every HTML document. This defines the title of the HTML page. The title can visually be visible in the browser's tab and is very helpful for search engines.
<!DOCTYPE html>
<html>
<head>
<title>My first WEB PAGE</title>
</head>
<body>
The content of the HTML document
</body>
</html>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.