tags:

views:

59

answers:

1

I'm trying to create the following design: alt text

This is my code so far.

<section class="frontpagearticle">
    <figure class="frontpagearticlefigure">
        <img class="frontpagearticleimg" />
    </figure>  
    <header>  
        <h2 class="frontpagearticleh2">MyHeader</h2><time class="frontpagearticletime">pubtime</time>  
    </header> 
    <p class="frontpagearticletext">Lorem....</p>
    <a href="">Read more...</a>
</section> 

I'm having problems creating my css, so ex. pubtime would be align to the right, while MyHeader would be left align.

The image is always going to be the same size.

height: 140px;
width: 250px; 
+2  A: 

Something like this? My attempt at making it, as simple as I could :)

Kyle Sevenoaks
Thanks alot Kyle Sevenoaks
gulbaek