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