添加Xhtml和Css验证按钮

发布于 2024-08-22 07:28:22 字数 89 浏览 7 评论 0原文

我正在开发一个网站,并且需要从 W3C 网站添加 Xhtml 和 Css 验证按钮。我最近 3 天一直在尝试,但没有找到任何如何添加它的解决方案。有人可以帮助我吗?

i am developing a website and i got a requirement for adding the Xhtml and Css verification buttons from W3C site.i am trying from last 3 days but didn't got any solution that how to add it.can anyone help me out?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

情魔剑神 2024-08-29 07:28:22

解决方案位于 w3c 网站。将其添加到您的页面:

<p>
  <a href="http://validator.w3.org/check/referer"><img
      src="http://www.w3.org/Icons/valid-xhtml10"
      alt="Valid XHTML 1.0!" height="31" width="88" /></a>
</p>

CSS 验证器有一个类似的块。当然,您应该确保您的页面实际上是有效的 XHTML 或 CSS。

The solution is on the w3c website. Add this to your page:

<p>
  <a href="http://validator.w3.org/check/referer"><img
      src="http://www.w3.org/Icons/valid-xhtml10"
      alt="Valid XHTML 1.0!" height="31" width="88" /></a>
</p>

There is a similar block for the CSS validator. You should probably make sure your page actually is valid XHTML or CSS, of course.

玩心态 2024-08-29 07:28:22

验证您的 XHTML(当然,并通过验证)后,您将获得要包含的标记“有效”图标。您也可以对 CSS 执行同样的操作

After you validate your XHTML (and pass validation, of course), you'll be given the markup to include the "valid" icons. You can do the same thing for you CSS, too.

听你说爱我 2024-08-29 07:28:22

对于 CSS 验证器,您可以使用以下站点

http://jigsaw.w3.org/css-validator/validator/

要验证站点,您可以将按钮的链接设置为

http://jigsaw.w3.org/css-validator/validator?uri=sitename&profile=css21&usermedium=all&warning=1&lang=en

uri 查询字符串参数中设置站点名称的位置。

对于 XHTML,您可以使用以下链接

http://validator.w3.org/check?uri=sitename&charset=%28detect+automatically%29&doctype=Inline&group=0

For CSS Validator you can use the following site

http://jigsaw.w3.org/css-validator/validator/

To validate a site you can set the link of the button to

http://jigsaw.w3.org/css-validator/validator?uri=sitename&profile=css21&usermedium=all&warning=1&lang=en

where you set the site name in the uri query string parameter.

For XHTML you can use the following link

http://validator.w3.org/check?uri=sitename&charset=%28detect+automatically%29&doctype=Inline&group=0
压抑⊿情绪 2024-08-29 07:28:22

一旦您的网站通过,您就会看到按钮。您可以在此处查看按钮代码的样子 http://validator.w3.org/ 并使用网址 www.w3c.org

Once your site passes, you'll see the buttons. You can see what the button code looks like here http://validator.w3.org/ and using the url www.w3c.org

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文