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