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