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