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