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