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