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