Hi as u know h1 is really ugly (and my website is really beautiful ) but its good for seo if i do something like <h1 style="font-size: 13px" > google will penalize me or something .? or its ok i can do it ?
It's fine, but use a CSS file to change the settings of the H1 tag rather than doing it the way you have suggested. eg <html> <head> <style> h1 { font-size: 13px; } </style> </head> <body> <h1>blah blah blah</h1> </body> </html> Code (markup):
use external css file, it will reduce unnecessary code on the page hence will not dilute keyword density and also increase re-usability.