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