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