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