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