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