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