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