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