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