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