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