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