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