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