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