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