HTML CSS 验证错误
Error found while checking this document as XHTML 1.0 Transitional!
我有我的网站[此处][链接已删除],
但我无法在线验证或在 Dreamweaver cs5 中验证。
问题是:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
那我应该把它改成什么呢?
我开始学习 HTML、CSS,所以如果我的情况很幼稚,请原谅我。
感谢您的意见/帮助。
该网站仅适用于 IE8 和 Chrome!
Error found while checking this document as XHTML 1.0 Transitional!
i have my site [here][link removed]
but im failing to validate either online or in dreamweaver cs5.
the problem being:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
what should i change this to, then?
im beginning to learn HTML, CSS so forgive me if my situation is naive.
thank you for your input/help.
the site only works in IE8 and Chrome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将源代码中的以下内容:
更改为
(html 实体必须以分号终止)
更改
并将
为
(
标记需要
type< /代码> 属性)
change the following in your source code:
<title>God©</title>
to
<title>God©</title>
(html entities must be terminated with a semicolon)
and change
<script language="javascript" src="script/sitescript.js"></script>
to
<script language="javascript" type="text/javascript" src="script/sitescript.js"></script>
(the
<script>
tag requires thetype
attribute)