当前位置: 首页 > 文档资料 > HTML 入门教程 >

<link>

优质
小牛编辑
118浏览
2023-12-01

描述 (Description)

HTML link标记用于定义外部文档的链接。 它位于文档的部分。

例子 (Example)

<!DOCTYPE html>
<html>
   <head>
      <title>HTML link Tag</title>
      <link rel = "stylesheet" href = "stylenew.css">
   </head>
   <body>
      <div id = "contentinfo">
         <p>Welcome to our website. We provide tutorials on various subjects.</p>
      </div>
   </body>
</html>

这是css文件stylenew.css

#contentinfo p {
   line-height: 20px;
   margin: 30px;
   padding-bottom: 20px;
   text-align: justify;
   width: 140px;
   color: red;
}

全局属性 (Global Attributes)

此标记支持 - HTML Attribute Reference描述的所有全局属性

具体属性 (Specific Attributes)

HTML link标记还支持以下附加属性 -

属性描述
charsetcharset定义链接文档的字符编码。
hrefURL指定资源文档的URL。
hreflanglanguage目标网址的语言代码
mediascreen tty tv projection handheld print braille aural all指定将在其上显示文档的设备
relalternate appendix bookmark chapter contents copyright glossary help home index next prev section start stylesheet subsection描述当前文档与目标URL之间的关系。
revalternate appendix bookmark chapter contents copyright glossary help home index next prev section start stylesheet subsection描述目标URI和当前文档之间的反转。
sizes HTML-5HeightxWidth指定链接资源的大小。
targetblank _self _top _parent指定要将页面加载到的目标框架。
typemimetype链接目标的内容的MIMEtype

事件属性 (Event Attributes)

此标记支持 - HTML Events Reference描述的所有事件属性

浏览器支持 (Browser Support)

ChromeFirefoxIEOperaSafariAndroid
YesYesYesYesYesYes