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