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