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