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