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