我的模板包含以下内容:
<h1 style="height: 80px;" /><img border="0" src="/somemoduledirectoryhere/Headline.ashx?c=sometexthere&fc=" alt="anothertexthere" /></h1>
<h2 style="margin-top: 20px;margin-left: 5px;">someheadlinehere</h2>
我在XHTML 1.0过渡标记期间收到以下错误。
文档类型不允许元素“h2”在这里;缺少“object”,“applet”,“map”,“iframe”,“button”,“ins”,“del”start-tag
元素“h1”的结束标记未打开
请您建议我如何解决这两个问题?
谢谢。
答案 0 :(得分:0)
<h1 style="height: 80px;" />
^
删除自动关闭标记语法。
答案 1 :(得分:0)
你是自我关闭H1标签
删除正斜杠:
<h1 style="height: 80px;" />
所以
<h1 style="height: 80px;">
答案 2 :(得分:0)
在第一行中,您自我关闭h1
:
<h1 style="height: 80px;" />
应该是
<h1 style="height: 80px;">