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