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