jacobrask/CSS1K

missing closing tag </li>

Closed this issue · 3 comments

Hi,

there's a missing closing tag for list item in index.html, line:80

<h1>CSS1K</h1>
<nav>
    <h2>Select a design</h2>
    <ul>
        <li><a href="./">Default</a>
            <a href="http://twitter.com/jacobrask">Jacob Rask</a>
    </ul>
</nav>

Hello, html5 doctype allows that syntax, as like as html4.

@SkAZi is right, I see no reason in particular to add an end tag to that list item.

Oh ok. Didn't know about this loose syntax.
Thanks.