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