Use on the webTotal Use [ 3405 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/64b5087becd9659ee34a94276e64c855?family=Pea+Jamie%2AB%2A+Wake+Up+Fishy%21" 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/64b5087becd9659ee34a94276e64c855?family=Pea+Jamie%2AB%2A+Wake+Up+Fishy%21);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Pea Jamie*B* Wake Up Fishy!";
src: url("https://db.onlinewebfonts.com/t/64b5087becd9659ee34a94276e64c855.eot");
src: url("https://db.onlinewebfonts.com/t/64b5087becd9659ee34a94276e64c855.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/64b5087becd9659ee34a94276e64c855.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/64b5087becd9659ee34a94276e64c855.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/64b5087becd9659ee34a94276e64c855.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/64b5087becd9659ee34a94276e64c855.svg#Pea Jamie*B* Wake Up Fishy!")format("svg");
}
2CSS rules to specify fonts
font-family: "Pea Jamie*B* Wake Up Fishy!";