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