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