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