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