How can you change the left margin in html?

heidegger

New member
My web page is getting better, but it always starts at the left. How do you set the left margin a little more to the center. My website is heidegger001.angelfire.com. Right click on it to see the code. It won't let me post the code here. I do have a html for dummies book. I think it has something to do with frames, it's just I don't know where to put it in. Also, I want to use percentages, not a number.
 
under your style tags you have this line:

body {color: purple; background: yellow; }

add a text-indent: 20%; so it looks like this:

body {color: purple; background: yellow; text-indent: 20%; }

Search other CSS type commands and you can do a lot in those style tags! CSS is great!
 
under your style tags you have this line:

body {color: purple; background: yellow; }

add a text-indent: 20%; so it looks like this:

body {color: purple; background: yellow; text-indent: 20%; }

Search other CSS type commands and you can do a lot in those style tags! CSS is great!
 
Back
Top