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