Which HTML control is suited for a blog's standard page?
I want to开发者_StackOverflow code and design a blog without using any available scripts. I want to know which HTML control to use to display posts one after the other as in a typical blog.
I am going to use Eclipse to code the same.
I want to know which HTML control to use to display posts one after the other as in a typical blog.
Seeing as HTML controls can be styled freely, it isn't as much a big deal as in a client-side GUI. But for a list of blog posts, one suitable element would be <ul>
(unordered list), the individual posts being <li>
(List items).
精彩评论