What is The HTML Code

by 5 replies
6
What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a href="http://www.carinsurancequotesinformation.com&quot;>car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site.
Someone told me use DIV tags but how do i put this in HTML code?.
#website design #code #create #html
  • That is done with a table.
    If you View Source in your browser, you will see exactly how it is done.
    • [1] reply
  • [DELETED]
  • [DELETED]
  • you could use something like this in your css:

    .image1 {
    background-image: url('images/1stimage.jpg') no-repeat;
    width: 200px;
    height: 148px;
    position: absolute;
    top: 100px;
    right: 15px;
    }

    .image2 {
    background-image: url('images/2ndimage.jpg') no-repeat;
    width: 200px;
    height: 148px;
    position: absolute;
    top: 100px;
    right: 230px;
    }

    and so on, of course change top and right postitions and width and height for your image sizes, there are other ways but this would be your easiest option

Next Topics on Trending Feed

  • 6

    What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a href="http://www.carinsurancequotesinformation.com&quot;>car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site. Someone told me use DIV tags but how do i put this in HTML code?.