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