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