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