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