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