HTML 5显示无效标记

时间:2014-05-06 16:31:49

标签: html5

class="container"部分中显示了Dreamweaver中的无效标记。即使我已经完成了每个标签的关闭和正确,我也不知道出了什么问题。

bfcnStore

</head>

<body>
    <section class="container">
        <header>
            <figure>

                    <img src="Images/images/header_final.png"/>

            </figure>
        </header>

        <section>
            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="#">News</a></li>
                    <li><a href="#">Futsal</a></li>
                    <li><a href="membership.html">Membership</a></li>
                    <li><a href="bfcnStore.html">Store</a></li>
                    <li><a href="contactUs.html">Contact Us</a></li>

                </ul>
            </nav>
        </section>
        </section>


        <section id="contactBfcn">
            <h1>manish shrestha</h1>
        </section>


    </section>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

你关闭了太多部分。删除其中一个/部分

是的,您可以删除这4个结束标记中的任何一个,并且您的标记有效。删除前两个中的任何一个将在#contactBfcn之后关闭.container并删除后两个中的任何一个将在之前关闭它。 Jason的评论不正确

答案 1 :(得分:1)

</head>
<body>
    <section class="container">
        <header>
            <figure>
                    <img src="Images/images/header_final.png"/>
            </figure>
        </header>
        <section>
            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="#">News</a></li>
                    <li><a href="#">Futsal</a></li>
                    <li><a href="membership.html">Membership</a></li>
                    <li><a href="bfcnStore.html">Store</a></li>
                    <li><a href="contactUs.html">Contact Us</a></li>
                </ul>
            </nav>
        </section>
        </section>    <------------------ this is whats wrong, a closing tag without opening tag
        <section id="contactBfcn">
            <h1>manish shrestha</h1>
        </section>
    </section>
</body>