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