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