1text-align: center, right, left, justify, start, end;
2font-weight: lighter, 100, normal, 400, bold, 700, bolder, 900;
3text-decoration: wavy, dashed, dotted, double, solid, underline, line-through, overline;
4text-decoration: underline red;
5line-height: normal;
6letter-spacing: 2;
7font-size: 100px;
8font-family: 'Courier New', Courier, monospace;
1@font-face {
2 font-family: "Name of the font"; /*eg Ubuntu*/
3 src: url("your/path/to/the.font");
4}
5
6p{
7 font-family: "Ubuntu";
8}