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