I use h1s and header tags in my seo work, but they look massive. how do i css it so they look reasonable?
something like this? <html> <head> <style type="text/css"> h1 {font-size: 12px; font-weight: bold; } </style> </head>
Great! Thanx a lot clay! Can you recommend any good resources as an intro to css? I'm looking for something digestible, not too long, but that will still teach me the basics I should know...
Another, more simple, way to code that would be: <h1 style="font-size:16px;">This Header Will Be 16 Pixels</h1> Or, in an external style sheet: .headers { font-size:16px; } Then in the page coding, link to the stylesheet and: <h1 class="headers">This Header Will Be 16 Pixels</h1>
There are many css tutorials on the internet. These seem like good ones: http://www.tizag.com/cssT/index.php http://www.w3.org/MarkUp/Guide/Style http://www.echoecho.com/cssintroduction.htm