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