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