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