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