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