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