I'm working on a sort of "Blog" element for my website and what I have currently is Some HTML but no working CSS. I always have failed with css. So here is the html so you may see what it looks like.
Code:
<!doctype HTML> <head> <link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'> <link rel="stylesheet" type="text/css" href="blog.css" /> </head> <body> <div class=blog> <div class=post id=#> <div class=head> Post title <span>Posted &date by poster</span> </div> <div class=body> Lorem ipsum dolor sit amet. </div> <div class=foot> <a href="#">Link To this Post</a> <span>Tags</span> </div> </div> </div> </body> </html>
And here is my fail at CSS so you may be able to see what I'm trying to do
Code:
.blog { text-align center font-family: 'Oxygen', sans-serif; } .post { text-align center font-family: 'Oxygen', sans-serif; } .head { font-family: 'Oxygen', sans-serif; text-align center font-size large } span.head { font-family: 'Oxygen', sans-serif; font-size small }
.foot { font-size small }
From the fail CSS you may be able to see what I'm trying to do, any help on this would be appreciated
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum