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