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