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