HTML CSS 验证错误

发布于 2024-09-11 07:46:26 字数 497 浏览 4 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

稀香 2024-09-18 07:46:26

将源代码中的以下内容:

God©

更改为

God©

(html 实体必须以分号终止)

更改

并将

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 the type attribute)

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