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