可以放一个链接 吗?和图像 在 h1内?
可以在 h1 中放置链接和图像吗?
就搜索引擎优化而言,这是有道理的,但我正在争论它在语义上和标准合规性方面是否正确。
例子
<h1>
<a href="example.com" title="link to example.com">
<img src="img.png" alt="example logo" />
Example.com
</a>
</h1>
Is it ok to put a link and an image inside an h1?
SEO wise, it makes sense but I'm debating whether its correct semantically and in regard of standards compliance.
Example
<h1>
<a href="example.com" title="link to example.com">
<img src="img.png" alt="example logo" />
Example.com
</a>
</h1>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
可以在 h1 中放置链接和图像吗?
就搜索引擎优化而言,这是有道理的,但我正在争论它在语义上和标准合规性方面是否正确。
例子
<h1>
<a href="example.com" title="link to example.com">
<img src="img.png" alt="example logo" />
Example.com
</a>
</h1>
Is it ok to put a link and an image inside an h1?
SEO wise, it makes sense but I'm debating whether its correct semantically and in regard of standards compliance.
Example
<h1>
<a href="example.com" title="link to example.com">
<img src="img.png" alt="example logo" />
Example.com
</a>
</h1>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
h1
标签允许包含“短语内容”。这意味着“与普通字符数据混合的短语元素”。a
和img
标签 都是短语元素。Yes.
An
h1
tag is allowed to contain "phrasing content". This means "phrasing elements intermixed with normal character data".a
andimg
tags are both phrasing elements.