I've just started learning HTML and CSS. Currently I'm creating a test site to practice with.
I'm just after an early idea if the principles I'm using are correct.The below is an snipit from the main body of my html code. Its just about positioning text and images on a grid at the moment. I seem to be using alot of "divs" with IDs in the CSS for styling etc.
Can someone tell me if the structure is ok, or not and what I'd need to do to change this.
Much thanks in advance.
PS, some of the alt text is work in progress and repeated currently hence why it repeats.
<div id="topmenu" class="grid_4">
<a href="www.bbc.com">About Us    </a><a href="www.bbc.com">Our Cheeses    </a><a href="www.bbc.com">Contact Us</a>
</div>
<div id="quote_one" class="grid_4">
<p>"QUOTE 1 - We really love the taste of your cheese, we will be back for more"</p>
</div>
<div id="logo" class="grid_4">
<img src="logo.jpg" alt="This is the company logo">
</div>
<div id="quote_two" class="grid_4">
<p>"QUOTE 2 - We really love the taste of your cheese, we will be back for more"</p>
</div>