Category: CSS

Links

On CSS Links you can set the following properties: Links example: a:link a:visited a:hover a:active <html> <head> </head> <body> The CSS Tutorial website link. </body> </html> Links result: The CSS Tutorial website link....

Background Color

The CSS background-color property it is used to set the background color in a html page. Background Color example: <html> <head> </head> <body> Background color example 1 Background color example 2 Background color example 3 </body> </html> Background Color result: Background...

Font Family

The CSS font-family property it is used to set the font of a text in a html page. The most used fonts are: Arial, Times, Times New Roman, Georgia, Helvetica, Helvetica Narrow, Verdana, Fixed, Courier New, Lucida Console, Comic Sans MS,...

Font Size

The CSS font-size property can be used to change the size of a text in a html page. Font Size properties are: font-size: 12px; font-size: 1em; font-size: 150%; Font Size example: <html> <head> </head> <body> Heading 1 Heading 2 Paragraph 1...

Font Style

The CSS font-style property can be used to change the text font of a html page. The font-style values are: normal, italic, oblique. Font Style properties are: font-style: normal; font-style: italic; font-style: oblique; Font Style example: <html> <head> </head> <body> Normal...