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