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