tags:

views:

39

answers:

1

I want to 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.

+1  A: 

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).

Pekka
Thanks. Can you suggest any links for the same?
RPK
@RPK the w3schools links will give you a starting point.
Pekka
I didn't mean links for <li>, I mean any link where I can find ways to dynamically extend HTML table and create <li>.
RPK
@RPK how do you mean, dynamically? I don't understand. Didn't you want to build your blog in pure HTML?
Pekka
No. HTML + PHP. Sorry for the missing tag in OP.
RPK
@RPK well, there is no defined way to do that. Any tutorial on how to build a web application using PHP will show the way I guess - here's one on how to build a blog, but I haven't read it. http://www.phpbuilder.com/columns/besserer20050729.php3
Pekka