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