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