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