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