正确的语义标签用于版权信息-html5


76

在网站的页脚中包含版权声明的最佳和最语义的标记/方法是什么?

Answers:


88

务必将其放在您<footer>的内部,但是最合适的元素是small元素

HTML5规范对此表示:

小字体通常具有免责声明,警告,法律限制或版权。有时还会使用小字体来注明出处或满足许可要求。


77

最好将其包含在<small>标签中。HTML<small>标签用于指定小字体。

小字体(也称为“小字体”或“鼠标纹”)通常是指文档中包含免责声明,警告或法律限制(例如版权)的部分。并且所有主要浏览器均支持此标签。

<footer>
 <small>&copy; Copyright 2058, Example Corporation</small>
</footer>

1
如何将“ Example Corporation”进一步嵌入地址标签中?还是将其显示为块?这不是完整的地址吗?
masterxilo 2014年

@masterxilo地址将显示为块,小则为块。<footer> <small>©版权所有2058,<地址> <a href="mailto:info@example.com"> Example Corporation </a>。<div>在以下地址访问我们:美国迪斯尼乐园Example.com Box 564 </ div> </ address> </ small> </ footer>在此处尝试:jsfiddle.net/PqJCL
Rami Sarieddine 2014年

12

<footer>标记似乎是一个不错的候选者:

<footer>&copy; 2011 Some copyright message</footer>

谢谢达林。那是我目前正在做的事情,尽管我想知道是否可以通过某种语义上的方式将版权信息与其他页脚内容区分开来
David

@大卫,不,没有。该<footer>可用于这一目的。
Darin Dimitrov

1
只是扩展一下:“页脚元素代表其最接近的祖先切片内容或切片根元素的页脚。页脚通常包含有关其部分的信息,例如谁撰写,链接到相关文档,版权数据等。” developers.whatwg.org/sections.html#the-footer-element
2011年

3
@DarinDimitrov是的。有。我们应该small为此使用标签。
apnerve'4

4
<footer><small>&copy; 2011 Some copyright message</small></footer>
apnerve'4

6

在链接中,如果您放置rel = license,则:表示当前文档的主要内容已包含在所引用文档描述的版权许可中。来源:http//www.w3.org/wiki/HTML/Elements/link

因此,例如,<a rel="license" href="https://creativecommons.org/licenses/by/4.0/">Copyrighted but you can use what's here as long as you credit me</a>给了人类一些可供阅读的信息,并让计算机知道该页面的其余部分已获得CC BY 4.0许可。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.