How to code html that have left,middle, right part like an usual webpage.?

Namibnat

New member
Using a table is often the way that three columns are created. You can do it with CSS though, but it is tricky.

You will need to create a style sheet: open a text editor and save it as a css flie. Then link your html page to it using:

<link rel="stylesheet" href="styleForMyPage.css" type="text/css" media="all" />

You can follow css tutorials like the one provided in the source section below.
 
I see almost every web pages have three part. One left, one middle, and one right. And when i creat a html said using a text editor then it just be of one part. So how to code html for that, which tag to use. Please help.
.
Thanks in advance for your help and appreciate all reasoneale answers...
 
using html, you could create a table with three seperate columns for data, which is how most websites these days are setup in their basic forms.

Your best bet is to link off to a CSS at the start of your HTML to ensure less mess in code. that will make life easier
 
Back
Top