Author: codertutor_3o6d0o

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...

Word Spacing

The CSS word-spacing property can be used to increase or decrease space between text words of a html page. The word-spacing values are: normal, length, initial, inherit. Word Spacing properties are: word-spacing: 0px; word-spacing: 30px; word-spacing: 1.5cm; Word Spacing example: <html>...

Line Height

The CSS line-height property can be used to increase or decrease text lines of a html page. The line-height values are: normal, number, length, %, initial, inherit. Line Height properties are: line-height: 30px; line-height: 80%; line-height: 1.5cm; line-height: 3; Line Height...

Text Indent

The CSS text-indent property can be used to indent the text of a html page. The text-indent values are: length, %, initial, inherit. Text Indent properties are: text-indent: 30px; text-indent: 30%; text-indent: 3cm; text-indent: 3em; Text Indent example: <html> <head> </head>...

Text Decoration

The CSS text-decoration property can be used to decorate a text in a html page. The text-decoration values are: none, underline, overline, line-through. Text Decoration properties are: text-decoration: none; text-decoration: underline; text-decoration: overline; text-decoration: line-through; Text Decoration example: <html> <head> </head>...