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