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