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