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