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