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