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