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