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