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