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