text.html 1.0 KB
Newer Older
ToTensor's avatar
ToTensor 已提交
1 2 3 4 5 6 7 8 9 10
 
<p class="zw">如果你对在HTML文档的头部<code>head</code>引用外部链接很熟悉,那么你可以看出这是一个外链的CSS样式表。</p> 
<pre class="代码无行号"><code><link rel="stylesheet" href="screen.css" media="screen"></code></pre> 
<p class="zw">这个属性定义了HTML文档和链接目标之间的关系,关联样式表是其中之一。我们采用类似的方法来连接RSS提要。</p> 
<pre class="代码无行号"><code><link rel="alternate" type="application/rss+xml" href="articles.rss"></code></pre> 
<p class="zw">我们还可以为关联到收藏或者关联到苹果图标<code>apple-touch-icon</code>做个定义,这是专门为iOS设备设计的:</p> 
<pre class="代码无行号"><code><link rel="shortcut icon" href="favicon.jpg" type="image/gif"> 
<link rel="shortcut icon" href="favicon.png" type="image/png"> 
<link rel="apple-touch-icon" href="ios.png"></code></pre> 
<p class="zw">所有基于链接的微格式,都是用这种方式来描述文档之间的关系。</p>