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