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