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