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