如何在 HTML 中添加文档标题?
使用 <title> 标签来添加文档标题HTML 的 <title> 标签用于指示 HTML 文档的标题。正文标题放置在 <head> 和 </head> 标签之间。
示例
可以尝试运行以下代码,学习如何在 HTML 中添加文档标题 −
<!DOCTYPE html> <html> <head> <title>Title comes here</title> </head> <body> <p>title tag is used for indicating the title of the HTML document. HTML document title is visible via browser’s title bar.</p> </body> </html>
广告