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