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