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