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