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