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