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