font adjustment css code example
Example 1: antialiasing css
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
//Also use webfonts: https://www.fontsquirrel.com/
Example 2: how bold text in css
p.normal {
font-weight: normal;
}
p.thick {
font-weight: bold;
}
p.thicker {
font-weight: 900;
}