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