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