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