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