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