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