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