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