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