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