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