![]() |
|
|
With CSS (Cascading Style Sheets) you can create your default html style. You can assign default text color, text size, background color, background image and more. This code must be write between <head> and </head>. Example: I want default text size like at 12 pixel and default text color like at blue color. <html> <head> <STYLE type=text/css> <!-- body {FONT-SIZE: 12px; COLOR: #3300FF;} --> </STYLE> </head> ... |