Use on the webTotal Use [ 5780 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/50e51460ffc179c1da2c610e323903cc?family=Fair+Sans+Text+W00+Light+It" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/50e51460ffc179c1da2c610e323903cc?family=Fair+Sans+Text+W00+Light+It);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Fair Sans Text W00 Light It";
src: url("https://db.onlinewebfonts.com/t/50e51460ffc179c1da2c610e323903cc.eot");
src: url("https://db.onlinewebfonts.com/t/50e51460ffc179c1da2c610e323903cc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/50e51460ffc179c1da2c610e323903cc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/50e51460ffc179c1da2c610e323903cc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/50e51460ffc179c1da2c610e323903cc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/50e51460ffc179c1da2c610e323903cc.svg#Fair Sans Text W00 Light It")format("svg");
}
2CSS rules to specify fonts
font-family: "Fair Sans Text W00 Light It";