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