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