Use on the webTotal Use [ 3720 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/413709f86f9876b7e33a3d062962d28a?family=Faber+Sans+Std+Heavy" 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/413709f86f9876b7e33a3d062962d28a?family=Faber+Sans+Std+Heavy);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Faber Sans Std Heavy";
src: url("https://db.onlinewebfonts.com/t/413709f86f9876b7e33a3d062962d28a.eot");
src: url("https://db.onlinewebfonts.com/t/413709f86f9876b7e33a3d062962d28a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/413709f86f9876b7e33a3d062962d28a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/413709f86f9876b7e33a3d062962d28a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/413709f86f9876b7e33a3d062962d28a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/413709f86f9876b7e33a3d062962d28a.svg#Faber Sans Std Heavy")format("svg");
}
2CSS rules to specify fonts
font-family: "Faber Sans Std Heavy";