css - HTML: How to insert links into Ordered/Unordered Lists? -
hello guys i'm creating website fun , wondering how can insert link inside order/unordered list? (although it's not in title) <li></li>
tag?
like this:
<ul> <li><a href="#">link 1</a></li> <li><a href="#">link 2</a></li> </ul>
li
stands "list item". tag can have direct child of <ul>...</ul>
, have put links inside <li>
.
Comments
Post a Comment