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