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