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