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