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