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