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