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