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