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