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