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