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