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