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