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