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