I want to create an html table in the format below.

I am not able to find a way to do it.
Can anyone help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t think you could have a fully cross-browser solution, anyway try this:
In the HTML part, you use the attribute “rowspan” to tell the cell (td) to span over n rows; you have to remove the relative cell declaration in the subsequent “spanned” cell.
The same works horizontally with the attribute “colspan”.
Default value of such attributes is 1, and it’s implicit.
The CSS part try to render the text vertically as seen in your image, but it’s not a CSS standard yet, so you have to try it in various browser. If you can’t achieve fully compatibility, you might be forced to render that text by image, if text is not dynamic.
Edited HTML to include a container to text as indicated in comment.