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