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