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