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