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