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