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