Home » questions » How to insert things into the margins of your website using HTML?

How to insert things into the margins of your website using HTML?

2006-08-06 19:47:54, Category: Programming & Design
I've got a website and I was wondering if anybody know how to insert things (like images, text, etc.) into the margins on the sides of the page using HTML. Thanks!

Answers

  1. Kenzie F

    On 2006-08-06 20:55:35


    well, there is a couple sites with marquees and codes...like i know these ummm...... to underline type < u >your text< / u > (DONT DO THE SPACES IN BETWEEN) to make bold type < b >your text< / b >(DONT DO THE SPACES IN BETWEEN) to italicize type < i >your text< / i > (DONT DO THE SPACES IN BETWEEN) ummm..... for a heart type & hearts ; (DONT DO THE SPACES IN BETWEEN) dagger = & dagger ; (DONT DO THE SPACES IN BETWEEN) copy sign = & copy ; (DONT DO THE SPACES IN BETWEEN) trademark sign = & trade ; (DONT DO THE SPACES IN BETWEEN) umm for any object practially type the & sign before the object and the ; after the object with no spaces between that is all I know : ) lol OH! and to make text small type < sup >your text< / sup > (DONT DO THE SPACES IN BETWEEN) big= < big >your text< / big > (DONT DO THE SPACES IN BETWEEN) center = < center >your text< / center > (DONT DO THE SPACES IN BETWEEN) and yeah THAT is all I know what is really weird is im 12 and know this all! †WEIRD† ♥, Kenzie
  2. jmfc

    On 2006-08-07 09:00:05


    One way to do this would be to setup a div tag with absolute positioning to control exactly where you want the content to appear. Try putting this in your code to see how it looks
    My content here
    This will give you a content area on the left side of the page. Adjust the values for 'left' to move it to the right. Change width and height as desired. You can also add some display options within the style tag such as border: 1px solid black; background: #A6000; padding: 10px; to change the look and feel of the area.