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