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