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