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