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