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">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?.
Hi, maybe this will help you, you need to float the boxes. Say this is your HTML: <div class="box">box content here</div> HTML: Then you'd have something like this in the css, while adjusting the margin which provides space between and around the boxes. .box { float: left; margin: 5px; } Code (markup): Of course, you can add more to your css to give the boxes a border, size, padding, etc.