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