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