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