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