1. 程式人生 > >HTML瀏覽器標題欄如何設定

HTML瀏覽器標題欄如何設定

瀏覽器標題欄如何設定

只需要在HTML中的 <head></head> 內加入 “Link’’ 和 “Title” 標籤即可。獻上程式碼:

<head>
    <meta charset="UTF-8">
    <title>100度享樂網</title>
    <link rel="stylesheet" href="../style/100du.css">
    <link rel="icon" href="../images/logo.png">
</head>

<Title> 標籤內寫入的內容為 “ 瀏覽器標題欄的標題 ” ;

<Link> 屬性 rel = " iconhref = " 圖片路徑 " ;