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