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