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