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