how can i create small fonts using CSS?. That visitor see it small but google see it normally. thanks.
The first step, long before asking in a forum, is to RTFM. Google does not "see" font sizes. It simply reads the code. cheers, gary
You can set the font size of elements in CSS using the property font-size. <html> <head> <style type="text/css"> h1 {font-size: 150%} h2 {font-size: 130%} p {font-size: 100%} </style> </head> <body> <h1>This is header 1</h1> <h2>This is header 2</h2> <p>This is a paragraph</p> </body> </html> Code (markup):