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