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