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