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