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