Brackets和w3c Validator表示此代码中存在错误

时间:2017-03-14 23:22:26

标签: html

Brackets和w3c验证器表示关闭p标签时出错,我无法弄清楚是什么,请帮忙!

<div class="container">
    <div class="row">
        <div class="col-xs-12">
            <h2 class="text-caramel">The following restaurants are currently serving our spirits:</h2>
            <p class="lead" style="padding-top:10px;">
                <h3>Bar Del Corso</h3>
                <a href="http://www.bardelcorso.com/" target="_blank">http://www.bardelcorso.com/</a>
            </p> 

1 个答案:

答案 0 :(得分:0)

<!--  H3 Tag Not Allow In P Tag
 <div class="container">
        <div class="row">
            <div class="col-xs-12">
                <h2 class="text-caramel">The following restaurants are currently serving our spirits:</h2>
 <h3>Bar Del Corso</h3>
                <p class="lead" style="padding-top:10px;">
                    <a href="http://www.bardelcorso.com/" target="_blank">http://www.bardelcorso.com/</a>
                </p> 
    </div>
    </div>
    </div>