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