Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在正在尝试验证我自己的代码。我得到了错误
"没有文档类型声明;暗示 "<!DOCTYPE HTML SYSTEM>""
当我将 < DOCTYPE> 放在代码的开头时,我在代码中使用的“ ”出现错误。我使用“ ”来对齐我的数字。
是否有其他代码仅用于 SPACE?
这是我的代码大纲是:
<html> <head> <title>...... </title> </head> <body>............</body> </html>
是的。尝试 代替
 
<!DOCTYPE html> <html> <head> <title> </title> <body> <div>Just testing  space</div> </body> </html>
jsfiddle 示例
确保你;在末尾有一个, 所以它是
;
 
你可以这样做:
<!DOCTYPE html> <html> <head> <title> </title> <body> </body>
您可以在此处了解有关 DOCTYPE的更多信息