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