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