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