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