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