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